YESNO: Difference between revisions

From Macros Wiki
Jump to navigationJump to search
ConnerO (talk | contribs)
No edit summary
ConnerO (talk | contribs)
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 2: Line 2:


{{Command|syntax=YESNO <prompt> <variable>
{{Command|syntax=YESNO <prompt> <variable>
|description=:Create a yes or no display box with a message.
|description=:Create a Yes/No dialog box.


|param1=<prompt>|param1_desc=Text or a string variable.
|param1=<prompt>|param1_desc=Text for the prompt on the dialog.
|param2=<variable>|param2_desc={{variable}}
|param2=<variable>|param2_desc=Variable to set to the response. 1 for "yes", 0 for "no".
}}
}}


===Example===
===Example===
:YESNO
:YESNO r$, YN1
:YESNO "Do You Want To continue ?", YN2


:For an example macro see [[Backup_Current_Part]]
:For an example macro see [[Backup_Current_Part]] and [[Calc_Geo_Extents]]
[[Category:Miscellaneous]]
[[Category:Miscellaneous]]

Latest revision as of 23:43, 20 August 2010

Up

Command

YESNO <prompt> <variable>


Create a Yes/No dialog box.

Parameters

<prompt>
Text for the prompt on the dialog.
<variable>
Variable to set to the response. 1 for "yes", 0 for "no".

Example

YESNO r$, YN1
YESNO "Do You Want To continue ?", YN2
For an example macro see Backup_Current_Part and Calc_Geo_Extents