Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you hide a form....

Status
Not open for further replies.

colezpapa3

Programmer
Dec 8, 2007
73
US
I have a form with a timer...an application auto shut off.
I would like the form to be hidden so nobody sees it when they go into the database. How do you hide a form.
Basically I want the hidden form to be loaded at startup...
 
click on properties and then on the form whilst in design view. then you have the option to make the form visible or not

"Children are smarter than any of us. Know how I know that? I don't know one child with a full time job and children."...Bill Hicks
 
Click on the actual form in design mode. Dont click on the top left corner but on the form/background. Open the forms properties and click on the 'Format' tab, the visible option should be there.

"Children are smarter than any of us. Know how I know that? I don't know one child with a full time job and children."...Bill Hicks
 
You han also hide and unhide it in code
Forms!YourFormName.Visible = False
Forms!YourFormName.Visible = True

Hope this helps

Jimmy
 

How about...
Code:
DoCmd.OpenForm "frmName", , , , , acHidden

Randy
 
How are ya colezpapa3 . . .

Would you like this form to be open automatically when the Db opens?

Calvin.gif
See Ya! . . . . . .

Be sure to see thread181-473997
Also faq181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top