MessageBox - OK / ABORT

BlitzMax Forums/BlitzMax Programming/MessageBox - OK / ABORT

Tibit(Posted 2008) [#1]
Are there any way of creating a custom MessageBox. Right now I use RuntimeError or Assert, but this is kinda harsh. Sometimes I just want to say "Asset X.png is missing, continue?", or "File not found, abort?"

Simple things like that for simple debuggning.

I was thinking about doing it with the GUI functions, but then I loose (at lest I think so) compatibility if I want to distribute the source-code.

Any suggestions?


REDi(Posted 2008) [#2]
Try the Notify and Proceed functions...
Notify "Something happend"
Print Proceed("oh no, something else happend ")



Tibit(Posted 2008) [#3]
Thanks, exactly what I was looking for :)


Kistjes(Posted 2008) [#4]
And if you use
AppTitle = "What's up?"

you can use the messageBox title as well ;)