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!

Hide tables - queries from users

Status
Not open for further replies.

fotis

IS-IT--Management
Jul 4, 2001
16
GR
In an Access200 front-end SQLServer7 back-end application is there any way of forcing the users to insert data only from the forms without being able to view the tables- queries?
 
Hi,

Yes, you can hide the details of tables, queries etc.

To do this, you need the code:

Application.SetOption "Built-In Toolbars Available", False

DoCmd.RunCommand (acCmdWindowHide)

in your autoexec

HTH

Tim
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top