Dialog
Top  Previous  Next

Dialog title
       comment1var1
       comment2var2
       .........
       commentNvarN
End Dialog

Displays the input dialog where the user can enter values of variables.

Parameters
 
title  
 
A string containing the text to be displayed in a dialog title. Cannot be variable or expression.  
 
commentN  
 
A string containing the text describing a corresponding parameter.  
 
varname  
 
The name of the variable to receive the content of the input.  

Example

' set initial values  
length = 100  
angle = 0  
 
' indicate dialog  
Dialog "Line properties"  
       "Line length", length  
       "Line angle", angle  
End Dialog