Sub OnActivate(Sender: Object; Args: IEventArgs);
Begin
//set of operators;
End Sub OnActivate;
Sender - parameter that returns the component that has generated the event.
Args - parameter that enables the user to determine event parameters.
The OnActivate event occurs when the form or one of its child components receives focus.
This event does not occur if:
Focus is passed between child components placed on the form.
Form is connected to the Frameor ControlBar components.
Current form is a MDI child form.
See also: