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




Reply With Quote