Post Load Event

  • Thread starter Thread starter James Lennon
  • Start date Start date
J

James Lennon

Is there an event that is raised that occurrs after a
Windows form is displayed for the firt time?

The Load event occurrs before the form is displayed for
the first time I am looking for an event that is raised
after the form is displayed for the first time?
 
James,

Your best bet would probably be to use the Activated event. This is,
however, raised each time the form is activated, so you'll need to use a
flag to indicate whether your code has already been run or not.

HTH,
Nicole
 
Back
Top