@chris:
Just check only the returncode of MessageBox any you know what the user selected... like
lPlaySound = MessageBox(NULL, "Muzik?", "", MB_YESNO)
lFullScreen = MessageBox(NULL, "Fullscreen?", "", MB_YESNO)
If lPlaySound = MB_YES ; Can be optimized to If lPlaySound only
lSound = True
Else
lSound = False
Endif
If lFullScreen = MB_YES
lScreen = True
Else
lScreen = False
Endif
However, you can change the look and feel of the messagebox... just try this flags you can combine...
MB_ICONSTOP
MB_ICONQUESTION ; possible the best for you...
MB_ICONWARNING
MB_ICONEXCLAMATION
MB_OK
MB_OKCANCEL
MB_YESNO
MB_YESNOCANCEL
MB_ARORTRETRYINGNORE
Edit:
Ah sorry, haven't seen JIMs post before... ^^ Btw, if you want an messagebox with own text on the buttons, this is possible too but a little bit complicated... If you want know how it work, just tell me and i will try to find the timer very soon to post an example..