Aug 4, 2006 #1 Brogrim Technical User Jul 28, 2000 184 IE I have a form that I want to be in the background invisible at all times. 'Me.Visible = False DoCmd.OpenForm "frmLHO", acNormal Thanks
I have a form that I want to be in the background invisible at all times. 'Me.Visible = False DoCmd.OpenForm "frmLHO", acNormal Thanks
Aug 4, 2006 #2 Remou Technical User Sep 30, 2002 13,030 BE How about: DoCmd.OpenForm "frmLHO", acNormal, , , , acHidden Upvote 0 Downvote
Aug 4, 2006 #3 TheAceMan1 Programmer Sep 23, 2003 11,174 US . . . or in the [blue]Open[/blue] event of the form: Code: [blue] Me.Visible = False[/blue] See Ya! . . . . . . Upvote 0 Downvote
. . . or in the [blue]Open[/blue] event of the form: Code: [blue] Me.Visible = False[/blue] See Ya! . . . . . .