VB,如何编码设置,让Text1非空。(我已经设了个数字判断语句)
PrivateSubText1_Change()IfNotIsNumeric(Text1.Text)ThenMsgBox"请只输入数字!重新输入"Text1.Text="...
Private Sub Text1_Change()
If Not IsNumeric(Text1.Text) Then
MsgBox "请只输入数字!重新输入"
Text1.Text = ""
Text1.SetFocus
End If
End Sub 展开
If Not IsNumeric(Text1.Text) Then
MsgBox "请只输入数字!重新输入"
Text1.Text = ""
Text1.SetFocus
End If
End Sub 展开
3个回答
展开全部
Private Sub Text1_Change()
If Not IsNumeric(Text1.Text) Then
MsgBox "请只输入数字!重新输入"
Text1.Text = ""
Text1.SetFocus
elseif len(text1.text)=0 then
MsgBox "输入不能为空!重新输入"
Text1.Text = ""
Text1.SetFocus
End If
End Sub
如果是为了防止文本框失去焦点时依然为空,可以在失去焦点事件里加入验证判断语句!
If Not IsNumeric(Text1.Text) Then
MsgBox "请只输入数字!重新输入"
Text1.Text = ""
Text1.SetFocus
elseif len(text1.text)=0 then
MsgBox "输入不能为空!重新输入"
Text1.Text = ""
Text1.SetFocus
End If
End Sub
如果是为了防止文本框失去焦点时依然为空,可以在失去焦点事件里加入验证判断语句!
展开全部
Private Sub Text1_Change()
Static flag As Boolean
If flag Then Exit Sub
flag = True
If Not IsNumeric(Text1.Text) Then
If Text1.Text <> "" Then
MsgBox "请只输入数字!重新输入"
Text1.Text = ""
Else
MsgBox "不能为空!"
End If
Text1.SetFocus
End If
flag = False
End Sub
Static flag As Boolean
If flag Then Exit Sub
flag = True
If Not IsNumeric(Text1.Text) Then
If Text1.Text <> "" Then
MsgBox "请只输入数字!重新输入"
Text1.Text = ""
Else
MsgBox "不能为空!"
End If
Text1.SetFocus
End If
flag = False
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
If Not IsNumeric(Text1.Text) Then
MsgBox "请只输入数字!重新输入"
Text1.SetFocus
End If
’Text1.Text = ""
MsgBox "请只输入数字!重新输入"
Text1.SetFocus
End If
’Text1.Text = ""
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询