VB中判断text不能为空
本人菜鸟,初来乍到,有个小问题问下:在VB中如何判断text1中不能为空,如按回车、或Tab、或鼠标点击到下一个text2中时弹出提示框,且光标无法进入text2,回到t...
本人菜鸟,初来乍到,有个小问题问下:
在VB中如何判断text1中不能为空,如按回车、或Tab、或鼠标点击到下一个text2中时弹出提示框,且光标无法进入text2,回到text1中。
在其他地方找到的代码:
if Text1.Text="" then MsgBox "内容为空"
这个代码按确定后可以进入下一项,没办法实现我要的功能。 展开
在VB中如何判断text1中不能为空,如按回车、或Tab、或鼠标点击到下一个text2中时弹出提示框,且光标无法进入text2,回到text1中。
在其他地方找到的代码:
if Text1.Text="" then MsgBox "内容为空"
这个代码按确定后可以进入下一项,没办法实现我要的功能。 展开
3个回答
展开全部
如果在多个文本中应用为空验证 应该加一个开关 以免产生多个同时验证
Dim tState As Boolean '开关
Private Sub Text1_GotFocus()'获取焦点时
tState = True
End Sub
Private Sub Text2_GotFocus()'获取焦点时
tState = True
End Sub
Private Sub Text1_LostFocus()'失去焦点时
If Text1.Text = "" And tState Then
MsgBox "该项不能为空"
Text1.SetFocus
End If
tState = False
End Sub
Private Sub Text2_LostFocus()
If Text2.Text = "" And tState Then
MsgBox "该项不能为空"
Text2.SetFocus
End If
tState = False
End Sub
Dim tState As Boolean '开关
Private Sub Text1_GotFocus()'获取焦点时
tState = True
End Sub
Private Sub Text2_GotFocus()'获取焦点时
tState = True
End Sub
Private Sub Text1_LostFocus()'失去焦点时
If Text1.Text = "" And tState Then
MsgBox "该项不能为空"
Text1.SetFocus
End If
tState = False
End Sub
Private Sub Text2_LostFocus()
If Text2.Text = "" And tState Then
MsgBox "该项不能为空"
Text2.SetFocus
End If
tState = False
End Sub
展开全部
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
If Text1 = "" Then MsgBox "不能为空!": Text1.SetFocus
End If
End Sub
Private Sub Text1_LostFocus()
If Text1 = "" Then MsgBox "不能为空!": Text1.SetFocus
End Sub
If KeyAscii = 13 Then
If Text1 = "" Then MsgBox "不能为空!": Text1.SetFocus
End If
End Sub
Private Sub Text1_LostFocus()
If Text1 = "" Then MsgBox "不能为空!": Text1.SetFocus
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub Text1_LostFocus()
If Len(Text1) = 0 Then MsgBox "不能为空": Text1.SetFocus
End Sub
If Len(Text1) = 0 Then MsgBox "不能为空": Text1.SetFocus
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询