Hi,
I have forms that disable the Page Up and Page Down keys utilizing the following coding for Key Down in the Form properties.
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case 33, 34
KeyCode = 0
End Select
End Sub
However, I have Memo...