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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top