Load Event

Applies To
Form

Description
Occurs before a form is displayed for the first time.

Usage

Form_Load (Sender$ As String)  
Sender$
Name of the form that sent the event.

Remarks
You can use this event to perform tasks before a form is shown to the user.

See Also
Form, Resize, Closed

Example

Function frmMain_Load(Sender$ As String)    
  GSet frmMain.txtSpeed.Text, Str$(g_RobotSpeed)
Fend