Advertising banner:
Load  
Help Contents • A0 • Customization Tools • FCAS • Language Reference • Help Document
   
   
Purpose
Loads a form's fields and data resources.
This command makes a form's field and data resources available to the application, but does not make the form visible. To display a form, you must use Show.
Syntax
Load FormName
Example
Sub Main()
        Load MyForm
        If MyForm.MyTable.Column(1) = TRUE Then
                MyForm.Title = "My Form's Title"
                MyForm.Show
        End If
End Sub