|
-
Mar 31st, 2001, 02:18 PM
#1
Enter Beeps
I have a program that uses a textbox to enter data, and whenever the user presses the enter key it automatically does a system beep. Does anyone know why, and do you know how i could fix this?
-
Mar 31st, 2001, 02:24 PM
#2
PowerPoster
I'm assuming you have some code in your text boxe's keypress event. Right or Wrong? If so, at the end, after your other code, throw this in
Private Sub Text1_KeyPress(KeyAscii as Integer)
' Your code
KeyAscii = 0
End Sub
-
Mar 31st, 2001, 02:51 PM
#3
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|