vb问题请教,从一个窗体转化到另一个不能实现!?谢谢~~

PrivateSubForm_Load()Text1.Text=""Text1.MaxLength=5Text2.Text=""Text2.MaxLength=4Text... Private Sub Form_Load()
Text1.Text = ""
Text1.MaxLength = 5
Text2.Text = ""
Text2.MaxLength = 4
Text2.PasswordChar = "*"
End Sub

Private Sub Text1_LostFocus()
If Not IsNumeric(Text1.Text) Then
MsgBox "用户名必须为数字", "", "警告"
Text1.Text = ""
Text1.SetFocus
End If
End Sub
Private Sub Command1_Click()
Dim m As Integer
If Text2.Text <> "abcd" Then
m = MsgBox("密码错误", 5 + 48, "警告")
If m <> 4 Then
End
Else
Text2.Text = ""
Text2.SetFocus
Form1.Hide
Form2.Show
End If
End If
End Sub
If Not IsNumeric(Text1.Text) Then "用户名必须为数字"改为"用户名必须为字母"或其他的怎么改呢?
Form1.Hide
Form2.Show
它按了commond 后form1不能转换到form2
展开
 我来答
popmoon
2008-12-02 · TA获得超过9993个赞
知道大有可为答主
回答量:4464
采纳率:30%
帮助的人:3492万
展开全部
Private Sub Text1_LostFocus()
If Not IsNumeric(Text1.Text) Then
MsgBox "用户名必须为数字", vbOKOnly, "警告"
Text1.Text = ""
Text1.SetFocus
End If
End Sub
Private Sub Command1_Click()
If Text2.Text <> "abcd" Then
MsgBox "密码错误", vbOKOnly, "警告"
Text2.Text = ""

Exit Sub
Else
Text2.Text = ""
Unload Me
Form2.Show
End If
End Sub

Private Sub Command2_Click()
If IsNumeric(Text1.Text) Then
MsgBox "用户名必须为字母", vbOKOnly, "警告"
Text1.Text = ""
Text2.Text = ""
Text1.SetFocus
End If
End Sub
百度网友efae51f
2008-12-01 · TA获得超过2221个赞
知道大有可为答主
回答量:6916
采纳率:0%
帮助的人:2977万
展开全部
没有问题呀
你那出什么问题了呢
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式