Search results

  1. K

    Enter/return key - does not fire event

    thank you very much!! it works!
  2. K

    Enter/return key - does not fire event

    hi, when pressing the return key (in a textbox field within a form) an action should be fired, but it does not. here is my code: ************************ Private Sub txmyTextbox_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then MsgBox "Return key pressed" End If End Sub...
Back
Top Bottom