Hi Nelson,
Generally, to eventhandler the load event, follow these steps:
1> click the form
2> press F4 to go to the Properties Window.
3> click the Events button (that thunder button)
4> in the Behavior category, you will find the Load event.
5> double click the Load event, you will have following line added in your source
code(C#)
//--------------------------------------
this.Load += new System.EventHandler(this.Form1_Load);
//.......
private void Form1_Load(object sender, System.EventArgs e)
{
}
//----------------------------------------
Please feel free to let me know If you have anything unclear on this subject.
Best regards,
Rhett Gong [MSFT]
Microsoft Online Partner Support
This posting is provided "AS IS" with no warranties, and confers no rights.
Please reply to newsgroups only. Thanks.
Nelson FANECO - 14 Jun 2004 10:31 GMT
Thanks a lot
Nelson FANECO
> Hi Nelson,
> Generally, to eventhandler the load event, follow these steps:
[quoted text clipped - 19 lines]
> This posting is provided "AS IS" with no warranties, and confers no rights.
> Please reply to newsgroups only. Thanks.