Advertising banner:

History
 
 Load
Home • Help • A0 • Customization Tools • FCAS • Language Reference • Load
 
Load (BASIC command)
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