Hi,
I have a programm with a search function. I can click on the button "Search" or press "Enter" to do "Search".
Each time I press "Enter", a "bip" sound is made. How can I prevent it?
Here is the code:
I have a programm with a search function. I can click on the button "Search" or press "Enter" to do "Search".
Each time I press "Enter", a "bip" sound is made. How can I prevent it?
Here is the code:
Code:
Private Sub Text3_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Recherche_Click
End If
End Sub