Posts

Showing posts from July, 2025

bypass shift key

  Sub SetBypassProperty() Const DB_Boolean As Long = 1 ChangeProperty " AllowBypassKey ", DB_Boolean, False End Sub Function ChangeProperty(strPropName As String, varPropType As Variant, varPropValue As Variant) As Integer Dim dbs As Object, prp As Variant Const conPropNotFoundError = 3270 Set dbs = CurrentDb On Error GoTo Change_Err dbs.Properties(strPropName) = varPropValue ChangeProperty = True ///// full code Sub SetBypassProperty() Const DB_Boolean As Long = 1     ChangeProperty " AllowBypassKey ", DB_Boolean, False End Sub   Function ChangeProperty(strPropName As String, varPropType As Variant, varPropValue As Variant) As Integer     Dim dbs As Object, prp As Variant     Const conPropNotFoundError = 3270       Set dbs = CurrentDb     On Error GoTo Change_Err     dbs.Properties(strPropName) = varPropValue     ChangeProp...