lazaridisaris
Programmer
I have an Access DB that when I startup th Project without pressing the shift key then the Break into code does not work.
My quest is to disable the bypasskey property so users will not be able to see what I dont want them to see.
I have created a logon form from which I give access rights to users and if an administrator logs on then it has full access to things but in the code execution (debuging) I cant break into anything.
I have these statements in my code
AllowPropertyOrNot "StartupShowDBWindow", True
AllowPropertyOrNot "AllowToolbarChanges", True
AllowPropertyOrNot "StartUpShowStatusBar", True
AllowPropertyOrNot "AllowSpecialKeys", True
AllowPropertyOrNot "AllowBreakIntoCode", True
AllowPropertyOrNot "AllowBuiltinToolbars", True
AllowPropertyOrNot "AllowFullMenus", True
AllowPropertyOrNot "AllowBypassKey", False
AllowPropertyOrNot "AllowBuiltInToolbars", True
when the administrator is loged on
and set all to false when a simple user logs on.
The only way to debug my project is to set the "AllowBypassKey" to true and reopen the DB with the shift key pressed.
Any suggestions will be appreciated.
Thanks in Advance.
My quest is to disable the bypasskey property so users will not be able to see what I dont want them to see.
I have created a logon form from which I give access rights to users and if an administrator logs on then it has full access to things but in the code execution (debuging) I cant break into anything.
I have these statements in my code
AllowPropertyOrNot "StartupShowDBWindow", True
AllowPropertyOrNot "AllowToolbarChanges", True
AllowPropertyOrNot "StartUpShowStatusBar", True
AllowPropertyOrNot "AllowSpecialKeys", True
AllowPropertyOrNot "AllowBreakIntoCode", True
AllowPropertyOrNot "AllowBuiltinToolbars", True
AllowPropertyOrNot "AllowFullMenus", True
AllowPropertyOrNot "AllowBypassKey", False
AllowPropertyOrNot "AllowBuiltInToolbars", True
when the administrator is loged on
and set all to false when a simple user logs on.
The only way to debug my project is to set the "AllowBypassKey" to true and reopen the DB with the shift key pressed.
Any suggestions will be appreciated.
Thanks in Advance.