Need MessageRequester Flag Names

Just starting out? Need help? Post your questions and find answers here.
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by Rookie.

I am looking for the flag names for the little pictures for The MessageRequester So if You Are The Author Of The Page in Tip 'n tricks with them let me know then

(My Computer Wont let on there again :cry::cry::cry: :cry: )

For Tthe Rookie

:evil:
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by gnozal.

;
; Flags for MessageRequester(Title$, Text$, Flags)
; ------------------------------------------------
;
; API: MessageBox_() & MessageBoxEx_()
;
;
; [ Buttons ]
;
;                       #MB_OK = [OK]              ( --> 0 = Standard )
;                 #MB_OKCANCEL = [OK] [Cancel]
;
;                    #MB_YESNO = [Yes] [No]
;              #MB_YESNOCANCEL = [Yes] [No] [Cancel]
;
;              #MB_RETRYCANCEL = [Retry] [Cancel]
;
;         #MB_ABORTRETRYIGNORE = [Abort] [Retry] [Ignore]
;        #MB_CANCELTRYCONTINUE = [Cancel] [Retry] [Continue]  -  (> Windows 98/2000)
;
;                     #MB_HELP = [Help] --> Help-Button (> Windows NT4/95)
;                                If this button is chosen, the Windows-Message
; '#WM_HELP' is sent to the program.                               gesendet.
;
; [ Icons ]
;
;                 #MB_ICONSTOP = Icon (X) : Stop
;                #MB_ICONERROR = Icon (X) : Stop (> Windows NT4/95)
;                 #MB_ICONHAND = Icon (X) : Stop
;
;             #MB_ICONQUESTION = Icon (?) : Question mark
;
;             #MB_ICONASTERISK = Icon (i) : Information
;          #MB_ICONINFORMATION = Icon (i) : Information
;
;              #MB_ICONWARNING = Icon (!) : Warning (> Windows NT4/95)
;          #MB_ICONEXCLAMATION = Icon (!) : Warning
;
; [ Default Button ]
;
;               #MB_DEFBUTTON1 = 1. Button is 'default' (selected)
;               #MB_DEFBUTTON2 = 2. Button is 'default' (selected)
;               #MB_DEFBUTTON3 = 3. Button is 'default' (selected)
;               #MB_DEFBUTTON4 = 4. Button is 'default' (selected)  -  (> Windows NT4/95)
;
; [ Priority ]
;
;                #MB_APPLMODAL = Message box is modal (for application)
;              #MB_SYSTEMMODAL = Message box is modal (for all the OS! -> severe errors!)
;
; [ Misc ]
;
;                    #MB_RIGHT = Text align right  -  (> Windows NT4/95)
;            #MB_SETFOREGROUND = MsgBox is foreground
;                                (intern call to SetForegroundWindow_())
;                  #MB_TOPMOST = MsgBox is 'Stay-on-Top'  -  (> Windows NT4/95)
;
; [ Return values ]
;
;                 #IDYES       = Yes
;                 #IDNO        = No
;                 #IDOK        = OK
;                 #IDABORT     = Abort
;                 #IDCANCEL    = Cancel
;                 #IDCONTINUE  = Continue    ; (> Windows 98/2000)
;                 #IDIGNORE    = Ignore
;                 #IDRETRY     = Retry
;                 #IDTRYAGAIN  = Retry again ; (> Windows 98/2000)
;                            0 = Error
Post Reply