SPRING :: NOTE

[C/C++] Edit Control 값 얻어오기 본문

Development Language/C · C++ · MFC

[C/C++] Edit Control 값 얻어오기

RAYZIE 2016. 2. 19. 02:50
반응형
// #### 리소스 아이디를 이용할 경우 #### //

CString str;
GetDlgItemText(IDC_EDIT_CONTROL, str);    // str에 Edit Control의 값이 들어감
// #### 변수를 이용 할 경우 #### //

[클래스명.h]
// Edit Control 변수선언
CEdit m_editControl;

[클래스명.cpp]
void [클래스명]::DoDataExchange(CDataExchange* pDX)
{
	...
	DDX_Control(pDX, IDC_EDIT_UPLOAD_DESC, m_editControl);
	...
}

// 실제 사용 부
CString str;
m_editControl.GetWindowTextA(str);    // str에 Edit Control의 값이 들어감


반응형
Comments