I want to detect a carriage return and I have the following code:
Private Sub tb1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles tb1.KeyPress
If e.KeyChar = Chr(Keys.Enter) Then Parse() End Sub
It works as desired BUT I receive a beep when the parse code completes. I also receive a beep if nothing is called in the kepress routine.
What is the significance of this beep and how do I turn it off

Textbox beep
Trent Ballew
LTD
Hi,
What Cathal Connoly meant wa to do this:
Private Sub tb1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles tb1.KeyPress
End Sub
cheers,
Paul June A. Domag
Lorenzom_MSFT
Cathal
Iza
Cathal,
When I did that, I don't see any characters in the textbox at all. That's a surprise.