Form.OnCreate

Syntax

Sub OnCreate(Sender: Object; Args: IEventArgs);

Begin

//set of operators;

End Sub OnCreate;

Parameters

Sender - parameter that returns the component that has generated the event.

Args - parameter that enables the user to determine event parameters.

Description

The OnCreate event occurs right during form creation. The event is executed one time when the form is started for execution and enables the user to allocate resources and initialize a form.

See also:

Form