if you have a textbox control, and you hit return/enter (ASCII 13) it beeps. can i make it not beep?
______________
Yes, in fact, you can. Code: Private Sub Text1_KeyPress(KeyAscii As Integer) if keyascii=13 then keyascii=0 End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer) if keyascii=13 then keyascii=0 End Sub
MicroBasic Dragon Shadow Trainer There is no good or evil in the world...only programmers and fools .
Forum Rules