I have a form with a few Textbox and I want the user to move from textbox to textbox with Enter and that works BUT I don't want the Beep it generate! Can I remove it somehow? With API?
Help :(
Printable View
I have a form with a few Textbox and I want the user to move from textbox to textbox with Enter and that works BUT I don't want the Beep it generate! Can I remove it somehow? With API?
Help :(
Try adding this:
VB Code:
Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii = vbKeyReturn Then Text2.SetFocus KeyAscii = 0 End If End Sub
Thank's! That did it! You have saved my day :o)