if(textBox1.text>100&&textBox1.text<0)
{
messagesbox.show("输入有误")
}
else
{
} 答案补充 哦 我这是C#
最直接就加正则:^[0-9]+$ 只能输入0-9的数字
然后就再判断不大于100且不能为0
你们把问题想的真复杂
Option Explicit
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 8 Then Exit Sub
If KeyAscii < 48 Or KeyAscii > 57 Then
KeyAscii = 0
ElseIf CLng(Text1.Text & Chr(KeyAscii)) > 100 Or CLng(Text1.Text & Chr(KeyAscii)) < 0 Then
KeyAscii = 0
End If
End Sub
你是再vb里边还是在哪里边?