int MessageBox(
LPCTSTR lpszText,
LPCTSTR lpszCaption = NULL,
UINT nType = MB_OK
);
- lpszText
가리키는 있는 CString 개체 또는 표시 되는 메시지에 포함 된 null로 끝나는 문자열입니다.
- lpszCaption
가리키는 있는 CString 개체 또는 null로 끝나는 문자열에 대 한 캡션을 메시지 상자를 사용할 수 있습니다. 경우 lpszCaption 는 NULL, 기본 캡션을 "오류"를 사용 합니다.
- nType
콘텐츠 및 메시지 상자의 동작을 지정합니다.
전역 함수 사용 AfxMessageBox 응용 프로그램에서 메시지 상자를 구현 하려면이 멤버 함수를 대신 합니다.
다음은 메시지 상자에 사용할 수 있는 다양 한 시스템 아이콘입니다.
MB_ICONHAND, MB_ICONSTOP, 및 MB_ICONERROR MB_ICONQUESTION
MB_ICONEXCLAMATION 및 MB_ICONWARNING MB_ICONASTERISK 및 MB_ICONINFORMATION
void CMainFrame::OnDisplayErrorMessage() { // This displays a message box with the title "Error" // and the message "Help, Something went wrong." // The error icon is displayed in the message box, along with // an OK button. MessageBox(_T("Help, Something went wrong."), _T("Error"), MB_ICONERROR | MB_OK); }
'Programming > MFC' 카테고리의 다른 글
MFC Dialog Modal (0) | 2016.09.22 |
---|---|
MFC Modal and Modeless Dialog Boxes (0) | 2016.09.06 |
MFC Alert MessageBox (0) | 2016.09.06 |
MFC Drag And Drop FileName 만 추출 (0) | 2016.08.30 |
MFC File Icon Drag and Drop (0) | 2016.08.30 |