Reputation: 1585
Hello.
How to create a hidden form in Microsoft Access.
I want to use it so I can fire some code when Access is closed.
Thank you.
Upvotes: 1
Views: 363
Reputation: 55921
Set - in code - its property Visible to False:
Forms!YourForm.Visible = False
Upvotes: 1