Message Box Icons or Pictures or Graphics

Share your advanced PureBasic knowledge/code with the community.
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4322
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Message Box Icons or Pictures or Graphics

Post by Rook Zimbabwe »

These are scattered but searching for them is difficult because the forum lists only topic titles or when they are used... I searched for this topic by this text and could not find all the info.

So I put it here.

Code: Select all

Flag	Meaning
MB_ICONEXCLAMATION, 
MB_ICONWARNING          An exclamation-point icon appears in the message box.

MB_ICONINFORMATION, 
MB_ICONASTERISK          An icon consisting of a lowercase letter i in a circle appears in the message box.

MB_ICONQUESTION	         A question-mark icon appears in the message box.

MB_ICONSTOP, 
MB_ICONERROR, 
MB_ICONHAND                 A stop-sign icon appears in the message box.
used thus:

Code: Select all

     MessageRequester("TITLE", "TEXT TO DISPLAY GOES HERE...". MB_ICONINFORMATION )
Hope this clarifies for all
:D
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
User avatar
Kaeru Gaman
Addict
Addict
Posts: 4826
Joined: Sun Mar 19, 2006 1:57 pm
Location: Germany

Post by Kaeru Gaman »

[ message beep sytem systemsound ]
to be added:

These Constants could also be used within the API call
MessageBeep_( #Type )
this will result in playing the sound that is associated to the given event (e.g. Warning) in the active Sound Profile.
Last edited by Kaeru Gaman on Thu Oct 30, 2008 3:28 pm, edited 1 time in total.
oh... and have a nice day.
User avatar
Fluid Byte
Addict
Addict
Posts: 2336
Joined: Fri Jul 21, 2006 4:41 am
Location: Berlin, Germany

Post by Fluid Byte »

Windows 10 Pro, 64-Bit / Whose Hoff is it anyway?
+18
Enthusiast
Enthusiast
Posts: 228
Joined: Fri Oct 24, 2008 2:07 pm

Post by +18 »

Rook Zimbabwe
That's useful Certainly.Thanksful
but it will be very useful if we can put specific icon into MessageRequester.
Post Reply