Load Event

The Load event fires on the Form object when all controls on the form are populated and the form is ready for user input.

Supported By:

 

Load events are supported by forms only.

 

EventArgs Properties:

 

None

 

 

Example:

 

The following code displays or hides a Panel control on the form based on the loan amount of the current loan.

 

If Loan.Fields ("1109") . Value > 100000 Then

Panel1.Visible = True

Else

Panel1.Visible = False

End If