Post Load Event

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • James Lennon

    Post Load Event

    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?
  • Nicole Calinoiu

    #2
    Re: Post Load Event

    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


    "James Lennon" <anonymous@disc ussions.microso ft.com> wrote in message
    news:0d7b01c39f 09$98538bc0$a60 1280a@phx.gbl.. .[color=blue]
    > 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?[/color]



    Comment

    Working...