Run form hidden without a macro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using Office 2003 and Windows XP.

Apart from creating a macro to run a form hidden, is there any other way to
accomplish this? I don't see a Visible property for the form...unless I just
missed it...?

Thanks much in advance.
 
XP said:
Using Office 2003 and Windows XP.

Apart from creating a macro to run a form hidden, is there any other way
to
accomplish this? I don't see a Visible property for the form...unless I
just
missed it...?

Thanks much in advance.

Yes there is a "Visible" property which can be set in code.

DoCmd.OpenForm "frmMyForm", , , , , acHidden

or if the form is open

Forms("frmMyForm").Visible = False

HTH - Keith.
www.keithwilby.com
 
Back
Top