mistermarty
Member
- Local time
- Today, 17:38
- Joined
- Oct 31, 2020
- Messages
- 41
Evening all. I have a module in my DB to disable and enable the shift startup override function. At the moment, I have to type apDisableShift or apEnableShift into the immediate window to turn the function on and off. I have placed an "on" and "off" command button on a form that only I have access to, but I don't know how to get each button to link to the relevant parts of the module. Can anyone point me in the right direction?
As always, please explain it as though you were talking to a young child, as my knowledge is basic to say the least!
Here's the code behind my module called modDisableShift
Thanks
As always, please explain it as though you were talking to a young child, as my knowledge is basic to say the least!

Here's the code behind my module called modDisableShift
Code:
Function ap_DisableShift()
'This function disable the shift at startup. This action causes
'the Autoexec macro and Startup properties to always be executed.
On Error GoTo errDisableShift
Dim db As DAO.Database
Dim prop As DAO.Property
Const conPropNotFound = 3270
Set db = CurrentDb()
'This next line disables the shift key on startup.
db.Properties("AllowByPassKey") = False
'The function is successful.
Exit Function
errDisableShift:
'The first part of this error routine creates the "AllowByPassKey
'property if it does not exist.
If Err = conPropNotFound Then
Set prop = db.CreateProperty("AllowByPassKey", _
dbBoolean, False)
db.Properties.Append prop
Resume Next
Else
MsgBox "Function 'ap_DisableShift' did not complete successfully."
Exit Function
End If
End Function
Function ap_EnableShift()
'This function enables the SHIFT key at startup. This action causes
'the Autoexec macro and the Startup properties to be bypassed
'if the user holds down the SHIFT key when the user opens the database.
On Error GoTo errEnableShift
Dim db As DAO.Database
Dim prop As DAO.Property
Const conPropNotFound = 3270
Set db = CurrentDb()
'This next line of code disables the SHIFT key on startup.
db.Properties("AllowByPassKey") = True
'function successful
Exit Function
errEnableShift:
'The first part of this error routine creates the "AllowByPassKey
'property if it does not exist.
If Err = conPropNotFound Then
Set prop = db.CreateProperty("AllowByPassKey", _
dbBoolean, True)
db.Properties.Append prop
Resume Next
Else
MsgBox "Function 'ap_DisableShift' did not complete successfully."
Exit Function
End If
End Function
Thanks