Closed Event

Applies To
Form

Description
Occurs when a form has been closed.

Usage

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

Remarks
You can use this event to perform tasks after a form has been closed.

See Also
Form, Load, Resize

Example

Function frmMain_Closed(Sender$ As String)    
  Print "frmMain was closed"
Fend