Difference between revisions of "TMessageBox.Button"

From OpenEUO
Jump to: navigation, search
Line 10: Line 10:
 
5 - RETRY/CANCEL<br>
 
5 - RETRY/CANCEL<br>
 
6 - CANCEL/TRY AGAIN/CONTINUE<br>
 
6 - CANCEL/TRY AGAIN/CONTINUE<br>
 +
<br>
  
form = Obj.Create("TMessageBox")
+
form = Obj.Create("TMessageBox")<br>
form.Button = 4
+
form.Button = 4<br>
form.Title = "Brian G's Tree Chopper"
+
form.Title = "Brian G's Tree Chopper"<br>
form.Show("Path file not found!\nWould you like to make a new one right now?")
+
form.Show("Path file not found!\nWould you like to make a new one right now?")<br>

Revision as of 08:27, 17 October 2011

Set this to a number to choose options for the message box:


0 - OK
1 - OK/CANCEL
2 - ABORT/RETRY/IGNORE
3 - YES/NO/CANCEL
4 - YES/NO
5 - RETRY/CANCEL
6 - CANCEL/TRY AGAIN/CONTINUE

form = Obj.Create("TMessageBox")
form.Button = 4
form.Title = "Brian G's Tree Chopper"
form.Show("Path file not found!\nWould you like to make a new one right now?")