English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

畫面中只有一個FORM
FORM中只有一個TEXTBOX
當我再TEXTBOX中按下ENTER鍵時都會發出\"噹\"的一聲
有方法不要讓那\"噹\"聲 出現嗎

2006-07-27 21:15:45 · 1 個解答 · 發問者 1 in 電腦與網際網路 程式設計

1 個解答

Private Sub Text1_KeyPress(KeyAscii As Integer)    If KeyAscii = 13 Then       '寫上當你按下Enter時要執行的動作如:       Print "你按下Enter"       KeyAscii = 0    End IfEnd Sub

2006-07-27 21:30:01 · answer #1 · answered by W.J.S. 7 · 0 0

fedest.com, questions and answers