In the keypress event of TextBox
When I press it, I will listen to the annoying "嘀" sound, how to cancel it, huh, it is actually very simple, add a keyasii = 0 to OK.
Private sub combo1_keypress (Keyascii As INTEGER)
IF keyascii = 13 THEN
Keyascii = 0 'To execute the program
END IF
End Sub