📄 denglu.frm
字号:
VERSION 5.00
Begin VB.Form denglu
Caption = "登录界面"
ClientHeight = 5175
ClientLeft = 3405
ClientTop = 3255
ClientWidth = 8475
LinkTopic = "Form1"
ScaleHeight = 5175
ScaleWidth = 8475
Begin VB.CommandButton Command2
Caption = "退出"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 4800
TabIndex = 5
Top = 3360
Width = 1335
End
Begin VB.CommandButton Command1
Caption = "登录"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2160
TabIndex = 4
Top = 3360
Width = 1335
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000040C0&
Height = 375
IMEMode = 3 'DISABLE
Left = 3600
PasswordChar = "*"
TabIndex = 3
Top = 2520
Width = 2535
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000040C0&
Height = 375
Left = 3600
TabIndex = 2
Top = 1920
Width = 2535
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "登录密码:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000040C0&
Height = 375
Left = 2160
TabIndex = 1
Top = 2640
Width = 1455
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "登录帐号:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000040C0&
Height = 375
Left = 2160
TabIndex = 0
Top = 2040
Width = 1455
End
End
Attribute VB_Name = "denglu"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Trim(Text1.Text) = "miao" And Trim(Text2.Text) = "miao" Then
zhu.Show
Text1.Text = ""
Text2.Text = ""
denglu.Hide
Else
MsgBox "帐号密码错误", , "提示"
Text1.Text = ""
Text2.Text = ""
Text1.SetFocus
End If
End Sub
Private Sub Command2_Click()
denglu.Hide
hao.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -