Shift Key has been disabled on Startup

B

Byzantine

Please help - I've done something stupid ! I have disabled the shift key on
start up(AllowBypassKey) and need to enable it again. I've read somewhere
that this can be done from another database but can't remember where or how.

Has anyone any idea?
 
P

Paul Overway

From another database, with a reference to DAO:

Sub ChangeProp()

Dim db as database

Set db = Opendatabase("path and name of your MDB here")
db.Properties("AllowBypassKey")=True

End Sub
 
L

LEECATES

Byzantine said:
Please help - I've done something stupid ! I have disabled the shift key on
start up(AllowBypassKey) and need to enable it again. I've read somewhere
that this can be done from another database but can't remember where or how.

Has anyone any idea?
 
Top