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

perhibit user to see tables and db window

Status
Not open for further replies.

YanaD

Programmer
Mar 22, 2001
38
0
0
US
I hide all tables already, and db window, but when i push a shift button on the keyboard i can still see tables and db. I have to set something up that no one can't access to the tables and db window. How should I do it?
 
This is what I use to keep users from holding the shift key and set initial database properties. Just call in the Form load event.

Sub SetStartupProperties()
ChangeProperty "StartupForm", dbText, "Main Menu"
ChangeProperty "StartupShowDBWindow", dbBoolean, False
ChangeProperty "StartupShowStatusBar", dbBoolean, False
ChangeProperty "AllowBuiltinToolbars", dbBoolean, False
ChangeProperty "AllowFullMenus", dbBoolean, False
ChangeProperty "AllowBreakIntoCode", dbBoolean, False
ChangeProperty "AllowSpecialKeys", dbBoolean, False
ChangeProperty "AllowBypassKey", dbBoolean, False
End Sub
 
There is a way to disable the shift key when access is loading...check out thread705-48693

Kyle ::)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top