📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
BackColor = &H00008000&
Caption = "银行系统"
ClientHeight = 7260
ClientLeft = 120
ClientTop = 420
ClientWidth = 9330
LinkTopic = "Form1"
ScaleHeight = 7260
ScaleWidth = 9330
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton Command3
Caption = "退出系统"
Height = 855
Left = 6600
TabIndex = 5
Top = 3960
Width = 1695
End
Begin VB.CommandButton Command2
Caption = "职工登陆"
Height = 855
Left = 6600
TabIndex = 1
Top = 2880
Width = 1695
End
Begin VB.CommandButton Command1
Caption = "管理员登陆"
Height = 855
Left = 6600
TabIndex = 0
Top = 1800
Width = 1695
End
Begin VB.Label Label3
BackColor = &H00808080&
Caption = "王小军"
BeginProperty Font
Name = "宋体"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 615
Left = 720
TabIndex = 4
Top = 3960
Width = 5055
End
Begin VB.Label Label2
BackColor = &H00808080&
Caption = "中南大学"
BeginProperty Font
Name = "幼圆"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 855
Left = 720
TabIndex = 3
Top = 2880
Width = 5055
End
Begin VB.Label Label1
BackColor = &H00808080&
Caption = "银行系统 "
BeginProperty Font
Name = "隶书"
Size = 42
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 855
Left = 720
TabIndex = 2
Top = 1800
Width = 5055
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click() '进入管理员登陆界面
Unload Form1
Form2.Show
End Sub
Private Sub Command2_Click() '进入职工登陆界面
Form3.Show
Unload Form1
End Sub
Private Sub Command3_Click()
End
End Sub
Private Sub Form_Load() '连接数据库
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -