파일명이 사라졌지만, 파일명에 유의
i'm not ok.PNG
메시지 추려내는 작업하다가 문득 Acroedit에 보이는 저 우울한 문구들...
Win32 프로그래밍 하는 분은 문득 깨달을지도?
Value | Meaning |
- MB_ABORTRETRYIGNORE
- 0x00000002L
|
The
message box contains three push buttons: Abort, Retry,
and Ignore.
|
- MB_CANCELTRYCONTINUE
- 0x00000006L
|
The message box contains three push buttons: Cancel, Try
Again, Continue. Use this message box type
instead of MB_ABORTRETRYIGNORE.
|
- MB_HELP
- 0x00004000L
|
Adds a Help button to the message box. When the user
clicks the Help button or presses F1, the system sends a
WM_HELP message to
the owner.
|
- MB_OK
- 0x00000000L
|
The
message box contains one push button: OK. This is the
default.
|
- MB_OKCANCEL
- 0x00000001L
|
The
message box contains two push buttons: OK and Cancel.
|
- MB_RETRYCANCEL
- 0x00000005L
|
The
message box contains two push buttons: Retry and Cancel.
|
- MB_YESNO
- 0x00000004L
|
The
message box contains two push buttons: Yes and No.
|
- MB_YESNOCANCEL
- 0x00000003L
|
The
message box contains three push buttons: Yes, No,
and Cancel.
|
[링크 : http://msdn.microsoft.com/en-us/library/ms645505%28VS.85%29.aspx]
|