Shift Key has been disabled on Startup

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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
 
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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top