Instead of form_activate()

  • Thread starter Thread starter Adam Honek
  • Start date Start date
A

Adam Honek

In VB6 and earlier we had a form_activate() event whereby it always fired
every
time the form gained was focussed.

In VB.net I don't see it and we have a _activate() event.

What event would I use for the background form to refresh once the
foreground
form has been closed?

_Enter

_Shown

???

TU,
Adam
 
Adam Honek said:
In VB6 and earlier we had a form_activate() event whereby it always fired
every
time the form gained was focussed.

In VB.net I don't see it and we have a _activate() event.

Handle the form's 'Activated' event instead.
 
Back
Top