我的意图是:文本框限制填写“数字”,如果填写字母或其他字符就报错。。。求教代码的正确写法。。。作者: yehf 时间: 2012-7-17 09:10
Private Sub Text0_AfterUpdate()
If IsNumeric(Me.Text0) = False Then MsgBox "请输入数字"
End Sub 作者: cocopig 时间: 2012-7-17 09:24
yehf 发表于 2012-7-17 09:10
Private Sub Text0_AfterUpdate()
If IsNumeric(Me.Text0) = False Then MsgBox "请输入数字"
End Su ...