खोज…


टिप्पणियों

यह कोड किसी उपयोगकर्ता के लिए Shift कुंजी को दबाए रखने के लिए क्षमता को बंद कर देगा जब डेटाबेस को खोलने के लिए डिफ़ॉल्ट रूप को खोलना होगा और उपयोगकर्ता को नेविगेशन फलक और VB संपादक तक पहुंच की अनुमति दे सकता है। DB के कि आप उपयोगकर्ताओं को इन दोनों में से किसी का उपयोग नहीं करना चाहते हैं (वर्तमान डेटाबेस विकल्पों में विशेष कुंजी के उपयोग को अक्षम करने के साथ), यह कोड डेटाबेस को बंद रखने में मदद करेगा।

आम तौर पर, नीचे दिए गए कोड को अपने स्वयं के मॉड्यूल में रखा जाता है जिसे बेसएनेबल डिसेबलशिफ्ट मॉड्यूल नाम दिया जा सकता है, लेकिन यह सिर्फ एक सुझाव है और आप इसे किसी भी मॉड्यूल में रख सकते हैं जो आपके पास पहले से हो सकता है।

Shift कुंजी को निष्क्रिय करने के लिए, अपने VB संपादक स्क्रीन के भीतर, अपनी तत्काल विंडो के भीतर 'DisableShift' दर्ज करें और Enter दबाएं। फिर आपको एक संदेश प्राप्त होगा कि शिफ्ट की को निष्क्रिय कर दिया गया है।

Shift कुंजी को फिर से सक्षम करने के लिए, आपको एक बार फिर VB संपादक स्क्रीन पर लौटने की आवश्यकता होगी, अपनी इमीडिएट विंडो के भीतर 'EnableShift' दर्ज करें और Enter दबाएं। आप फिर से अपनी तत्काल विंडो में एक संदेश प्राप्त करेंगे जिसमें शिफ्ट कुंजी को सक्षम करने की सलाह दी गई है।

नोट: यह Shift कुंजी को सक्षम और अक्षम करने का एक मूर्ख प्रमाण तरीका नहीं है, लेकिन यदि आप उन उपयोगकर्ताओं के लिए डेटाबेस की तैनाती कर रहे हैं जो MS Access और VBA के साथ कुशल नहीं हैं, तो यह VB संपादक और / का उपयोग करने से उपयोगकर्ताओं को रोकने में सहायक होना चाहिए। या आपके डेटाबेस में नेविगेशन फलक।

शिफ्ट फ़ंक्शन फ़ंक्शन अक्षम करें

Function 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.
    Debug.Print "Disabled Shift Key - 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."
            GoTo ExitHere
    End If

ExitHere:
    Set prop = Nothing
    Set db = Nothing
    Exit Function

End Function

Shift फ़ंक्शन कोड सक्षम करें

Function 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
    Debug.Print "Enabled Shift Key - Successful"
    GoTo ExitHere

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."
            GoTo ExitHere
    End If

ExitHere:
    Set prop = Nothing
    Set db = Nothing
    Exit Function

End Function


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow