(SOLVED) Simple question about a Message box

BlitzMax Forums/BlitzMax Programming/(SOLVED) Simple question about a Message box

vinians(Posted 2013) [#1]
Hi guys! I'm sorry for ask so much but I tried to find it in search but returned nothing. I need to show a message box to the user, what function should I use? I'm using MaxGUI.
Btw the blitzMax documentation are pretty good but its lacks of a search button in the help page.
Thanks in advance!


Henri(Posted 2013) [#2]
Hello,

by all means, ask away :-)
Use Notify, Proceed or Confirm depending what you want.

EDIT:

The text used in the titlebar is contained in a global variable named Apptitle.
So to display custom titlebar text, you can do something like:
Strict

AppTitle = "My app"

Local old_title:String = AppTitle

AppTitle = "My message"

Notify "Hello all!!!"

AppTitle = old_title


-Henri


vinians(Posted 2013) [#3]
Thanks friend, and btw I found another two after searching for more information about notify


Function Confirm( text$,serious=False )
Function Proceed( text$,serious=False )



Thanks!