I've made a program and if I want to change the focus from text1 to text 2 I do this:
--------------------
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 13 Then
Text2.SetFocus
End If
End Sub
--------------------
but when I press the enter key, I get a 'ping'-sound.
how can I make this disappear?

martijn