looking fo event
is there any control event equivalent to load in form , or at least accrues the sec after the control been created?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sunny ChenPosted Jul 6, 2008, 12:02 AM
Yes, I agree with Scott.
Another way, you may add another event handler into the form's designer generated code, like following:
this.Load += new EventHandler(YourMethodName);
where the YourMethodName is the method where you put your code that is similar to Form_Load.
Hope this helps.
Scott LyslePosted Jun 22, 2008, 7:30 AM