Reputation: 149
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)
and this is what I have
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!
Upvotes: 5
Views: 44035
Reputation: 1
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
Upvotes: 0
Reputation: 396
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"
Upvotes: 8
Reputation: 1626
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.
Upvotes: 1