Bringing form to top

  • Thread starter Thread starter John
  • Start date Start date
SetFocus to it, e.g.:
Forms!Form1.SetFocus

That should work unless you have opened some forms modally or as popups.
 
John said:
Hi

How can I bring an already open form to the top of all other forms?

Depending on the properties of the other displayed forms, you can "bring it
to the top" (this assumes that it is open) by setting the focus to an object
on that form, e.g.,

Forms!frmTheFormOfInterest!txtATextBoxOnTheForm.Set Focus

That will not necessarily work if some of the open Forms are Popup or Modal,
and the form in question is just a normal form.

Larry Linson
Microsoft Office Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top