Hello]
I'm not sure whether this is a form coding question or VBA modules question.
I want to use a generic function =FormKeyDown() on form's key down event, instead of using event procedure:
, I want to be able to retrieve KeyCode in
Is it possible? Thanks very much in advance, Michael.
I'm not sure whether this is a form coding question or VBA modules question.
I want to use a generic function =FormKeyDown() on form's key down event, instead of using event procedure:
Code:
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Code:
Function FormKeyDown()
.
End Function
Is it possible? Thanks very much in advance, Michael.