vb文本框怎样设置只能输入数字

2024-11-13 12:55:40
推荐回答(2个)
回答1:

可以定义一个键盘事件
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii < Asc("0") Or KeyAscii > Asc("9") Then
MsgBox "Enter a number"
KeyAscii = 0
End If
End Sub

回答2:

设置文本框的数字属性啊