Small company logo:
   History
 
Advertising banner:
 
 Load
Home • Help • Customization Tools • FCAS • Language Reference • Load
 
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