テキストボックスでEnterキーで鳴るBeepを消す
MultiLine=False のテキストボックスでEnterキーを押すと鳴るBeep音が邪魔なとき
Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then KeyAscii = 0 End If End Sub