pedie
Well-known Member
- Joined
- Apr 28, 2010
- Messages
- 3,875
Hi, can I make vba open MyForm and Hide application...
Make only Form Visible, is this possible like in excel?
If yes what is the event i need to use and how to code in access?
Please help. Thanks in advance.
It is quite easy in Excel
Make only Form Visible, is this possible like in excel?
If yes what is the event i need to use and how to code in access?
Please help. Thanks in advance.
It is quite easy in Excel
Code:
[/FONT]
[FONT=Courier New]Option Explicit[/FONT]
[FONT=Courier New]Private Sub Workbook_Open()
Userform1.Show
Application.Visible = False
End Sub