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:
  1. Private Sub Form_Timer()
  2.  
  3. 'On the forms timer event close the start-up form
  4.     DoCmd.Close acForm, "frmStartUp"
  5. 'Open up the main Logon form when the start-up form closes
  6.     DoCmd.OpenForm "frmLogon"
  7.    
  8. End Sub