Hi,
You can do so after InitializateComponents() is called in the constructor.
Additionally you could do so in the Load event of the form.
cheers,
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"Javaman59" <Ja*******@discussions.microsoft.com> wrote in message
news:B8**********************************@microsof t.com...
I want to add a ValueChanged event handler to a control. If I add the
handler
during form construction then the ValueChanged handler gets called when
the
control is initialized, and I don't want this. However I cannot find a
place
during form initialization where I can add the handler AFTER the control
has
been initialized.
So, how do I add a ValueChanged event handler to a control AFTER the
control
has been initialized?
- Javaman