📄 frmcustomer.frm
字号:
VERSION 5.00
Begin VB.Form frmCustomer
Caption = "会员界面"
ClientHeight = 3705
ClientLeft = 60
ClientTop = 450
ClientWidth = 5295
LinkTopic = "Form2"
ScaleHeight = 3705
ScaleWidth = 5295
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdBack
Caption = "返 回"
Height = 495
Left = 2760
TabIndex = 1
Top = 2040
Width = 1695
End
Begin VB.CommandButton cmdEdit
Caption = "修改密码"
Height = 495
Left = 720
TabIndex = 2
Top = 2040
Width = 1695
End
Begin VB.CommandButton cmdSelect
Caption = "录像查询"
Height = 495
Left = 2760
TabIndex = 3
Top = 1080
Width = 1695
End
Begin VB.CommandButton cmdBorrow
Caption = "租借情况"
Height = 495
Left = 720
TabIndex = 0
Top = 1080
Width = 1695
End
Begin VB.Frame Frame1
Caption = "请选择操作"
Height = 2535
Left = 480
TabIndex = 4
Top = 600
Width = 4335
End
End
Attribute VB_Name = "frmCustomer"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdBack_Click()
Unload Me
frmWelcome.Show
End Sub
Private Sub cmdBorrow_Click()
Me.Hide
frmMemberBorrow.Show
End Sub
Private Sub cmdEdit_Click()
Me.Hide
frmPassEdit.Show
End Sub
Private Sub cmdExit_Click()
Dim response
response = MsgBox("是否退出?", vbOKCancel + vbQuestion, "退出")
If response = 1 Then
End
End If
End Sub
Private Sub cmdSelect_Click()
sign = 1
Me.Hide
frmSelect.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -