• Disable delete key? (Access 2002)

    Author
    Topic
    #416618

    Is there a way to disable the delete key?

    Viewing 0 reply threads
    Author
    Replies
    • #932467

      Where do you want to disable the Delete key?

      Throughout the database?

      Create a new macro.
      Display the Macro Name column.
      Enter {DELETE} in the Macro Name column.
      Save the macro as AutoKeys (this name is mandatory).

      AutoKeys will be run automatically.

      In a specific form?

      Open the form in design view.
      Activate the Event tab of the Properties window.
      Set the Key Preview property to Yes.
      Create an On Key Down event procedure for the form:

      Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
      If KeyCode = vbKeyDelete Then
      KeyCode = 0
      End If
      End Sub

      In a specific control?

      Open the form in design view.
      Select the control.
      Activate the Event tab of the Properties window.
      Create an On Key Down event procedure for the control:

      Private Sub ControlName_KeyDown(KeyCode As Integer, Shift As Integer)
      If KeyCode = vbKeyDelete Then
      KeyCode = 0
      End If
      End Sub

      Replace ControlName with the name of the control.

    Viewing 0 reply threads
    Reply To: Disable delete key? (Access 2002)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: