form1.frm
来自「带界面的银行管理系统。包括客户界面和内部管理界面。采用两种方式来实现数据库的连接」· FRM 代码 · 共 118 行
FRM
118 行
VERSION 5.00
Begin VB.Form Form1
BackColor = &H00FFFFFF&
Caption = "首页"
ClientHeight = 5925
ClientLeft = 60
ClientTop = 345
ClientWidth = 8070
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
Picture = "Form1.frx":0000
ScaleHeight = 5925
ScaleWidth = 8070
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
BackColor = &H00C0E0FF&
Caption = "员工"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 855
Left = 1440
Style = 1 'Graphical
TabIndex = 3
Top = 2400
Width = 2055
End
Begin VB.CommandButton Command3
BackColor = &H00C0E0FF&
Caption = "退出"
BeginProperty Font
Name = "楷体_GB2312"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 975
Left = 2880
Style = 1 'Graphical
TabIndex = 2
Top = 4080
Width = 2415
End
Begin VB.CommandButton Command2
BackColor = &H00C0E0FF&
Caption = "管理员"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 855
Left = 4680
Style = 1 'Graphical
TabIndex = 1
Top = 2400
Width = 1935
End
Begin VB.Label Label1
BackColor = &H00FFC0C0&
Caption = "欢迎进入银行服务管理系统!"
BeginProperty Font
Name = "楷体_GB2312"
Size = 26.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 975
Left = 600
TabIndex = 0
Top = 600
Width = 7095
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 Me
Form2.Show
End Sub
Private Sub Command2_Click()
Unload Me
Form3.Show
End Sub
Private Sub Command3_Click()
End
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?