怎么能让VB中的TEXT文本框字能输入数字而不能输入字符?
发布网友
发布时间:2023-12-24 00:10
我来回答
共2个回答
热心网友
时间:2024-04-13 10:34
在TEXT文本框的KeyPress事件中添加如下代码:
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii > Asc("9") Then
KeyAscii = 0
End If
End Sub
热心网友
时间:2024-04-13 10:30
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii < 48 Or KeyAscii < 58 Or KeyAscii = 8 Then
Else
KeyAscii = 0
End If
End Sub