CreateForm
Instantiates the Form object identified by the name supplied as argument. The form must exist in the "Forms" folder of the scripting project. Returns the form object (System.Windows.Forms.Form) corresponding to the given name, or null if no form with such name exists.
Signature
CreateForm (strFormName : String) -> System.Windows.Forms.Form | null |
Example
Let's assume that a form called "FormName" exists in the scripting project.
The following JScript code instantiates the form with some default values and displays it to the user.
var myForm = CreateForm( "FormName" ); |
The dialogResult can subsequently be evaluated as follows:
if ( dialogResult == CLR.Static( "System.Windows.Forms.DialogResult" ).OK ) |
Note: | The code above will work only if the DialogResult property of the "OK" and "Cancel" buttons is set correctly from the Properties pane (for example, it must be OK for the "OK" button). |