Anyway to hide Access completely??
I have this form below that is set to come up on start-up. Is there anyway to just show the form and hide the Access windows completely? I just want to see my form outside of Access, so basically just hide it somehow??
VB Code:
Private Sub Form_Timer()
'On the forms timer event close the start-up form
DoCmd.Close acForm, "frmStartUp"
'Open up the main Logon form when the start-up form closes
DoCmd.OpenForm "frmLogon"
End Sub
Re: Anyway to hide Access completely??
Found this.
You could also minimixe the Access window, set hide database in startup (still have the grey window, but not the database window (tables, queries, etc, and/or set the form to maximize, thereby covering Access.
Re: Anyway to hide Access completely??
thanks, that's what I tried and couldn't get it to work
Re: Anyway to hide Access completely??
What didn't work for you? I have used that code posted in the link with great success.