StarScream
Technical User
I've read the FAQ on Enabling/Disabling the Shift Key on Startup. However, it was written for Access 97 and I'm using Access 2000. I get an error that the "User-defined type is undefined". Can't Dim As Database.
Can anyone help me out? Thanks.
PJ
Code:
Public Sub EnableByPassKeyProperty()
Dim db As Database
Set db = CurrentDb
db.Properties.Delete "AllowByPassKey"
db.Properties.Refresh
End Sub
Can anyone help me out? Thanks.
PJ