-
My project has 3 forms, one that runs on startup. This form has a button that loads the next form. This form has code that loads the final form, when the final form is run I set form2.enable to false and then set form2.enable to true when the final form is closed.
The problem is that when I close the final form, the first form appears on the top of the second form.
This is REALLY annoying me!
Somebody PLEAAASE help me!
-
Try
Try using
Form2.Setfocus
when form3 closes
-
or when you show form 2 and form 3 use:
form2.Show vbModal
and
form3.Show vbModal
this will make sure they are on top of the previous form.
this assumes you don't want to go back to the previous forms before the one you are looking at closes...