📄 主界面.frm
字号:
VERSION 5.00
Begin VB.Form Frmmain
Caption = "校园自助银行模拟系统主界面"
ClientHeight = 4395
ClientLeft = 60
ClientTop = 345
ClientWidth = 6345
LinkTopic = "Form2"
ScaleHeight = 4395
ScaleWidth = 6345
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "系统帮助"
BeginProperty Font
Name = "黑体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 5040
TabIndex = 6
Top = 3600
Width = 1335
End
Begin VB.CommandButton ComExit
Caption = "系统退出"
BeginProperty Font
Name = "黑体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 5040
TabIndex = 5
Top = 3960
Width = 1335
End
Begin VB.CommandButton ComFrmfind
Caption = "查询余额"
BeginProperty Font
Name = "华文行楷"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3360
TabIndex = 4
Top = 2640
Width = 1335
End
Begin VB.CommandButton ComFrmsave
Caption = "自动存款"
BeginProperty Font
Name = "华文行楷"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3360
TabIndex = 3
Top = 1320
Width = 1335
End
Begin VB.CommandButton ComFrmchange
Caption = "用户转帐"
BeginProperty Font
Name = "华文行楷"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 720
TabIndex = 2
Top = 2640
Width = 1335
End
Begin VB.CommandButton ComFrmget
Caption = "自动取款"
BeginProperty Font
Name = "华文行楷"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 720
TabIndex = 1
Top = 1320
Width = 1335
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "银行模拟系统——主界面"
BeginProperty Font
Name = "华文行楷"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 0
TabIndex = 0
Top = 360
Width = 6375
End
End
Attribute VB_Name = "Frmmain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub ComFrm_Click()
Frmpassword.Show
Unload Me
End Sub
Private Sub ComFrmfind_Click()
Frmfind.Show
Unload Me
End Sub
Private Sub ComFrmget_Click()
Frmget.Show
Unload Me
End Sub
Private Sub ComFrmsave_Click()
Frmsave.Show
Unload Me
End Sub
Private Sub ComFrmchange_Click()
Frmchange.Show
Unload Me
End Sub
Private Sub ComExit_Click()
End
End Sub
Private Sub Command1_Click()
Unload Me
bzjm.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -