D
DaveL
I have a Base Window
public class InheritForm:BaseForm
when Controls are added
i want to add a eventhandler that will fire 1st before
the other control events
as in the leave and enter events
ive tried Control_added event but my events fire after the inherited
Controls enter/leave events
Ive also tried OnControlCreate() well Test App Hangs
Where is the best place to add leave/enter events
in the base form , so they will fire 1st before the leave /enter in the
inherited form
DaveL
public class InheritForm:BaseForm
when Controls are added
i want to add a eventhandler that will fire 1st before
the other control events
as in the leave and enter events
ive tried Control_added event but my events fire after the inherited
Controls enter/leave events
Ive also tried OnControlCreate() well Test App Hangs
Where is the best place to add leave/enter events
in the base form , so they will fire 1st before the leave /enter in the
inherited form
DaveL