Form AfterLoad

  • Thread starter Thread starter Andrew Deren
  • Start date Start date
A

Andrew Deren

I need to execute some code after the form loads. OnLoad
event doesn't work, because it fires before form is
displayed. I need the form to display, and then do
something.
Is there any event that I can use?
Thanks.
 
* "Andrew Deren said:
I need to execute some code after the form loads. OnLoad
event doesn't work, because it fires before form is
displayed. I need the form to display, and then do
something.

In the form's 'Load' event handler, you can show the form by calling its
'Show' method and put some code after this call.
 
Back
Top