Unload Event
Occurs when an object is released.
Unload is the last event to occur before a form set or form is released.
PROCEDURE Object.Unload
Remarks
Unload occurs after the Destroy event and after all the contained objects have been released. In addition, Unload occurs depending on the type of object:
Form objects are released in code when the object variable that refers to the form is released or when its form set is released.
Form set objects are released in code when the object variable that refers to the form set is released.
If a container object, such as a form set, contains objects, the Unload event for the container object occurs after the Unload events for the objects it contains. For example, a form set containing one form that contains one control (a CommandButton) is released in this order:
FormSet Destroy event
Form Destroy event
CommandButton Destroy event
Form Unload event
FormSet Unload event
To return a value to the TO VarName clause in the DO FORM command, use the RETURN command in the Unload event. For more information, see DO FORM Command.