Microsoft
Software
Hardware
Network
Question : Open Form then Hide It
How to I hide a form after I open it? I've tried:
Private Sub Form_Load()
Me.Visible = False
End Sub
but it's still visible! Can I open a form and make it not visible to the user?
Answer : Open Form then Hide It
actually this is enough to hide the form "frm_AppShutDown"
Private Sub Form_Open(Cancel As Integer)
DoCmd.OpenForm "frm_AppShutDown", acNormal, , , , acHidden
End Sub
Random Solutions
Limit the number of attendee's to a class
Application.RunCommand acCmdSubformFormView Causes Runtime error 2501
Loop select statement and update rows with the results?
ADO vs linked dsn
How change background color of a text box based on date criteria
How do I modify an XML file from Access VBA
FRX error
XBox 360 saying NAT Type is Moderate. How can I connect to other gamers
How can I change the identity property of a column without setting the wrong seed?
Repaint UserControl in DesignTime