📄 form0404.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "登录"
ClientHeight = 2295
ClientLeft = 60
ClientTop = 345
ClientWidth = 3540
LinkTopic = "Form1"
ScaleHeight = 2295
ScaleWidth = 3540
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "确定"
Default = -1 'True
Height = 495
Left = 1080
Picture = "Form0404.frx":0000
TabIndex = 4
Top = 1680
Width = 1095
End
Begin VB.TextBox Text2
Height = 495
IMEMode = 3 'DISABLE
Left = 1560
PasswordChar = "*"
TabIndex = 3
Top = 960
Width = 1335
End
Begin VB.TextBox Text1
Height = 495
Left = 1560
TabIndex = 1
Top = 120
Width = 1335
End
Begin VB.Label Label2
Caption = "口令:"
Height = 375
Left = 600
TabIndex = 2
Top = 1080
Width = 735
End
Begin VB.Label Label1
Caption = "用户名:"
Height = 375
Left = 480
TabIndex = 0
Top = 240
Width = 975
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
'单击确定按钮
If Text1 = "Guest" And Text2 = "888888" Then
MsgBox "欢迎使用本系统!", vbOKOnly, "输入"
Else
MsgBox "对不起,你不是本系统用户!", vbOKOnly, "输入"
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -