D Dirk Goldgar Aug 21, 2009 #2 Pastor Del said: How can I make a form invisible in Access 2000? Click to expand... If the form is already open, this line of VBA code will do i: Forms!YourFormName.Visible = False If the code is running in the code module of the form you want to hide, you can use this simpler form instead: Me.Visible = False If you want to open a form invisibly, you can write this: DoCmd.OpenForm "YourFormName", WindowMode:=acHidden (other arguments may be included as needed.
Pastor Del said: How can I make a form invisible in Access 2000? Click to expand... If the form is already open, this line of VBA code will do i: Forms!YourFormName.Visible = False If the code is running in the code module of the form you want to hide, you can use this simpler form instead: Me.Visible = False If you want to open a form invisibly, you can write this: DoCmd.OpenForm "YourFormName", WindowMode:=acHidden (other arguments may be included as needed.
P Pastor Del Aug 21, 2009 #3 Just found the windowmode of the OpenForm method & it's exactly what I needed.