Difference between revisions of "TMessageBox.Title"

From OpenEUO
Jump to: navigation, search
(Created page with "You can set TMessageBox.Title to the whatever title you'd like for your message box.<br> Make sure you use a string value! <br> <pre>form = Obj.Create("TMessageBox") form.Button...")
 
(No difference)

Latest revision as of 08:37, 17 October 2011

You can set TMessageBox.Title to the whatever title you'd like for your message box.
Make sure you use a string value!

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