VB设置不允许输入除数字外的字符
发布网友
发布时间:2024-10-24 09:40
我来回答
共1个回答
热心网友
时间:2024-11-02 01:32
这里我举text1.text文本框为例(用到了keydown事件)
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 8 Then '为了使程序不会死循环 8为backspace健
Exit Sub
Else
If KeyCode >= 48 And KeyCode <= 57 Then '判断是否为数字
Else
SendKeys "{BACKSPACE}" '不为数字的话删除
End If
End If
End Sub