Form1 登录页代码 Private Sub Command1_Click() If Text2 = 10086 Then MsgBox "登陆成功" Form4.Show Else MsgBox "账号或密码错误请重新登陆" End If If Text1 = 12345 And Text2 = 12345 Then Form3.Show End If user = Text1.Text End Sub Private Sub Command2_Clic() Form1.Hide Form2.Show End Sub Private Sub Text1_Change() user = Text1.Text End Sub Form2 彩蛋页代码空 没写 Form3空 Form4 上网页面代码 Private Sub Command1_Click() Shell "rundll32.exe url.dll,FileProtocolHandler " & Text1.Text & "/infocenter" End Sub Private Sub Form_Load() Label4.Caption = Form1.Text1.Text End Sub Private Sub Label4_Click() End Sub 求助