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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple one - make Access Switchboard invisable 1

Status
Not open for further replies.

handlebars

Technical User
Feb 18, 2003
270
GB
I cant find how within code how to make the access switchboard (that contains objects such as tables and forms, etc) invisable.

Can anyone enlighten me?

Andrew
 
If you just want to hide the form you can use:

Me.Visible = False


or

Forms("MyForm").Visible = Fase


or, even

Forms!MyForm.Visible = False

Stewart J. McAbney | Talk History
 
setup a new macro called AUTOEXEC and add the following two lines to the macro fields

RUNCOMMAND (In command box select WINDOWHIDE)
OPENFORM (Name of your first form to open)

This runs on the database opening and hides the switchboard and opens your first form to view
 
Many thanks to Roy - its all about using the correct terms - database window! All i wanted to do was hide it completely.

Cheers for all your relies.

Andrew
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top