MessageBox - OK / ABORT
BlitzMax Forums/BlitzMax Programming/MessageBox - OK / ABORT| 
 | ||
| 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? | 
| 
 | ||
| Try the Notify and Proceed functions... 
Notify "Something happend"
Print Proceed("oh no, something else happend ")
 | 
| 
 | ||
| Thanks, exactly what I was looking for :) | 
| 
 | ||
| And if you use AppTitle = "What's up?" you can use the messageBox title as well ;) |