vb中缺少语句结束是什么意思
PrivateSubText1_Change()IfVal(Text1)<=0ThenMsgBox"父亲的身高不能小于等于0!"ElseIsNumeric(Text1)=...
Private Sub Text1_Change()
If Val(Text1) <= 0 Then
MsgBox "父亲的身高不能小于等于0!"
Else IsNumeric(Text1) = fase then
MsgBox "父亲身高输入了数字以外的字符!"
End If
说是少了语句结束。。。 展开
If Val(Text1) <= 0 Then
MsgBox "父亲的身高不能小于等于0!"
Else IsNumeric(Text1) = fase then
MsgBox "父亲身高输入了数字以外的字符!"
End If
说是少了语句结束。。。 展开
6个回答
展开全部
Private Sub Text1_Change()
If Val(Text1) <= 0 Then
MsgBox "父亲的身高不能小于等于0!"
Else IsNumeric(Text1) = fase then
MsgBox "父亲身高输入了数字以外的字符!"
End If
End Sub '补上这句就好了
If Val(Text1) <= 0 Then
MsgBox "父亲的身高不能小于等于0!"
Else IsNumeric(Text1) = fase then
MsgBox "父亲身高输入了数字以外的字符!"
End If
End Sub '补上这句就好了
追问
加了还是不行Else IsNumeric(Text1) = fase then好像是这句有问题,显示的是红色
追答
因为还有别的错误。fase漏l,else后面不能跟条件,代码逻辑需要作一些调整,建议修改如下
Private Sub Text1_Change()
if IsNumeric(Text1) = false then
MsgBox "父亲身高输入了数字以外的字符!"
End If
If Val(Text1) <= 0 Then
MsgBox "父亲的身高不能小于等于0!"
End If
End Sub
或者这样写更好
Private Sub Text1_Change()
If IsNumeric(Text1) = false then
MsgBox "父亲身高输入了数字以外的字符!"
Text1.SetFocus
Exit Sub
ElseIf Val(Text1) <= 0 Then
MsgBox "父亲的身高不能小于等于0!"
Text1.SetFocus
Exit Sub
End If
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询