I'm trying to trap ESC Ascii in Form Keypress Event but it seems the Browser object on the form is preventing all Form Keypress events from being fired.
Keypreview Property of the form is set to true.
Threw DoEvents In for fun
Code:
Private Sub Form_KeyPress(KeyAscii As Integer)
DoEvents
MsgBox "Key " & KeyAscii & " Was Just Pressed Pressed."
End Sub
Thanks is advance (as always)