How do I make a form in Access become a Pop-up Window?
Asked Answered
G

3

5

I am looking to make the forms I have in Access pop-up forms. I have a picture of what I want (the picture is from a different file)

enter image description here

and this is what I have

enter image description here

As far as I can tell, there is no difference in the Macros, the settings, and the VBA code between the two files. How do I make my forms pop out like the one pictured?

Thanks!

Gladstone answered 23/5, 2017 at 13:16 Comment(0)
T
8

Have you tried DoCmd.OpenForm "YouFormName", , , , , acDialog ?


If you want to permanently define your form as a pop-up just go to the form's

Property Sheet -> "Other" Tab > Set "Pop Up" to "Yes"
Thatcher answered 23/5, 2017 at 13:21 Comment(2)
Yes, I have that piece of code in my VBA macro already, but it still only opens the form, it doesn't make it a separate window.Gladstone
Thanks so much! I'm pretty unfamiliar with Access, I appreciate it!Gladstone
D
1

You need to change the default window view of the database.

Go to File ¬ Options and select the "Current Database" option on the left side.

In that option list there is a section under Application Options that says "Document Window Options" Select Overlapping Windows instead of Tabbed Documents.

Doordie answered 26/5, 2017 at 11:47 Comment(1)
To note: if you have the "Pop Up" property set to "Yes", the database windows can be set to either tabbed or overlappingLakshmi
S
0

2016 Microsoft Access (as of 2020)

Normal Navigation

Method 1: File > Options (Access Option Window Pop-up) > Left Column Toolbar: Current database navigation > Document Window Options > Select Overlapping Windows


Alt Key Shortcuts

Fast Method 2: Alt + F > Alt+ T > Press Alt + O

Sheliasheline answered 10/9, 2020 at 6:39 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.