Pop-up form falls behind

  • Thread starter Thread starter June
  • Start date Start date
J

June

I have two forms.

One is a full screen form that is always open. I want this
form to fill the whole screen, so I have set PopUp = yes
and maximizes it.

Two is a Info-form I can open and keep open as I work in
One. Two has PopUp = yes

If I click on One, Two falls behind - despite it's PopUp
property.

How do I make sure it stays on top?
 
June said:
I have two forms.

One is a full screen form that is always open. I want this
form to fill the whole screen, so I have set PopUp = yes
and maximizes it.

Two is a Info-form I can open and keep open as I work in
One. Two has PopUp = yes

If I click on One, Two falls behind - despite it's PopUp
property.

How do I make sure it stays on top?

If both forms are set as PopUp, there's no priority for one over the
other, so they will behave like that. How about setting the first
form's PopUp property to False, but maximizing the Access application
window (RunCommand acCmdAppMaximize) as well as the form?
 
Back
Top