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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top