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
How do you access a Frontpage subpage directly through IE
How do I check all checkboxes in a .Net Winforms TreeView Control?
New motherboard will not boot
Is there any tool we could convert vb.net project to be C#?
How to embed C# code in aspx page which is repeater?
Can I install SQL Server Express on Small Business Server 2003 without messing up the SBS configs
DLookup Delay
Compaq presario 6016us ethernet controller driver
Another missing reference question
how can i loop through the tables in my database and do a record count for each table?