I have a text box for entering in a search string on my form. I coded the
following KeyPress event handler:
Private Sub txtFindCall_Key Press(KeyAscii As Integer)
If KeyAscii = 13 Then
cmdFind_Click
Exit Sub
End If
End Sub
This allows the user to start the search by hitting the Enter key while in
this text box. It works fine but my PC sounds a beep when Enter is pressed.
Can I turn this off? What does it signify?
Thanks,
Stephen Saunders
P.S. Thanks to those who answered my "Repeat Question" post!
following KeyPress event handler:
Private Sub txtFindCall_Key Press(KeyAscii As Integer)
If KeyAscii = 13 Then
cmdFind_Click
Exit Sub
End If
End Sub
This allows the user to start the search by hitting the Enter key while in
this text box. It works fine but my PC sounds a beep when Enter is pressed.
Can I turn this off? What does it signify?
Thanks,
Stephen Saunders
P.S. Thanks to those who answered my "Repeat Question" post!
Comment