Form1 { public OnOnitialize() { this.OnLoad += new Load(); other control
creation code goes here }
Form2:Form1 { public OnInitiailze() { this.OnLoad += new Load(); other
control creation code goes here. base.OnInitialize(); }
if Form2 calls a base method of its inherited member then it may bind both
events. .
> Hi all,
>
[quoted text clipped - 15 lines]
> Thanks,
> KPH
KPH - 30 Sep 2004 07:53 GMT
Hi,
I try by your example but it's not work because I don't know the
OnInitialize() and Load() function come from. Would you please tell me more
information or details that help me solve this problem.
Thanks,
KPH
> Form1 { public OnOnitialize() { this.OnLoad += new Load(); other control
> creation code goes here }
[quoted text clipped - 24 lines]
> > Thanks,
> > KPH