Difference between revisions of "TMessageBox.Show"

From OpenEUO
Jump to: navigation, search
(Created page with "<pre>TMessageBox.Show(sCaption)</pre><br> Pass this function a string to display it in the message box caption. <br> You can include /n to create new lines. <br> <pre>form = Obj...")
 
 
Line 1: Line 1:
<pre>TMessageBox.Show(sCaption)</pre><br>
+
<pre>TMessageBox.Show(sCaption)</pre>
 
Pass this function a string to display it in the message box caption.
 
Pass this function a string to display it in the message box caption.
 
<br>
 
<br>

Latest revision as of 08:39, 17 October 2011

TMessageBox.Show(sCaption)

Pass this function a string to display it in the message box caption.
You can include /n to create new lines.

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?")