VB作业,新手,这里有两个窗体,怎么样在第一个窗体点击登陆跳转到第二个窗体?在线等,急! 50

 我来答
帐号已注销
2015-11-18 · TA获得超过898个赞
知道大有可为答主
回答量:1482
采纳率:0%
帮助的人:942万
展开全部

form1,添加一个command,2个label,两个text

Private Sub Command1_Click()
If Text1 = "" Then
    MsgBox "账号为空!", vbInformation, "Information"
    Text1.SetFocus
Else
    If Text1 <> "admin" Then '账号可自行修改
        MsgBox "账号错误!", vbInformation, "Information"
        Text1 = ""
        Text1.SetFocus
    Else
        If Text2 = "" Then
            MsgBox "密码为空!", vbInformation, "Information"
            Text2.SetFocus
        Else
            If Text2 <> "admin" Then ''密码可自行修改
                MsgBox "密码错误!", vbInformation, "Information"
                Text2 = ""
                Text2.SetFocus
            Else
                Unload Me
                Form2.Show
            End If
        End If
        
    End If
End If
End Sub
Private Sub Form_Load()
    Label1.Caption = "账号"
    Label2.Caption = "密码"
    Text1 = ""
    Text2 = ""
    Text2.PasswordChar = "*"
    Command1.Caption = "登录"
    Me.Caption = "教学综合管理系统"
End Sub

form2直接菜单编辑器编辑菜单即可

Private Sub Form_Load()
    Me.Caption = "个人空间"
End Sub

Private Sub tc_Click()
    End
End Sub
sbj518
2015-11-18 · TA获得超过4.4万个赞
知道大有可为答主
回答量:1.1万
采纳率:81%
帮助的人:5275万
展开全部
me.hide
form2.show
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式