TMessageBox.Button

From OpenEUO
Revision as of 08:21, 17 October 2011 by 204.236.253.94 (Talk) (Created page with "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/CONTIN...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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

[code] 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?") [/code]