M
Martin
Hi Everyone,
How can I disable the shift(bypass) key for adp?
Regards,
Martin.
How can I disable the shift(bypass) key for adp?
Regards,
Martin.
Hi Everyone,
How can I disable the shift(bypass) key for adp?
Regards,
Martin.
Lyle Fairfield said:Public Sub ToggleKeys(Optional ByVal KeyState As Boolean = True)
With CurrentProject
With .Properties
.Add "AllowByPassKey", KeyState
.Item("AllowByPassKey").Value = KeyState
.Add "AllowSpecialKeys", KeyState
.Item("AllowSpecialKeys").Value = KeyState
End With
End With
End Sub
Private Sub Test()
ToggleKeys False
End Sub