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
Access Database Out of Memory Error
Is there a way to restart Windows service remotely?
exchange 2007 sending emails
How to limit the memory usage of a VB.NET process in Win Server 2008
Can VS 2008 run on the same computer as VS 2010?
Login to local account on Domain Computer
Cut / paste rows based on criteria in one column into different worksheet; repeat multiple times
Word 2007 can't open word 2003 .doc files
How do I remove these borders?
Enumerate Exchange Emails in vb.Net