J John A Grandy Sep 23, 2008 #1 What is the difference between overriding MyForm.OnLoad and writing a MyForm_Load event handler ?
J Jack Jackson Sep 23, 2008 #2 What is the difference between overriding MyForm.OnLoad and writing a MyForm_Load event handler ? Click to expand... Subscribing to the event adds a little overhead (allocation of some memory and processing the list of event handlers). Overriding OnXXX allows you to inhibit the calling of the event handlers. Most articles I have read recommend overriding the OnXXX routines.
What is the difference between overriding MyForm.OnLoad and writing a MyForm_Load event handler ? Click to expand... Subscribing to the event adds a little overhead (allocation of some memory and processing the list of event handlers). Overriding OnXXX allows you to inhibit the calling of the event handlers. Most articles I have read recommend overriding the OnXXX routines.