📄 admfrm.frm
字号:
VERSION 5.00
Begin VB.Form admfrm
Caption = "管理员设置"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command4
Caption = "退 出"
Height = 495
Left = 2760
MaskColor = &H00FF0000&
TabIndex = 3
Top = 2160
Width = 1215
End
Begin VB.CommandButton Command3
Caption = "注 销"
Height = 495
Left = 600
TabIndex = 2
Top = 2160
Width = 1215
End
Begin VB.CommandButton Command2
Caption = "更改密码"
Height = 495
Left = 600
TabIndex = 1
Top = 1320
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "增加管理员"
Height = 495
Left = 600
TabIndex = 0
Top = 480
Width = 1215
End
Begin VB.Image Image1
Height = 960
Left = 2880
Picture = "admfrm.frx":0000
Top = 720
Width = 960
End
End
Attribute VB_Name = "admfrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
AddAdmin.Show
End Sub
Private Sub Label1_Click()
AddAdmin.Show
End Sub
Private Sub Command2_Click()
changepass.Show
End Sub
Private Sub Command3_Click()
Me.Hide
AdminLogin.User.Text = "" '登录窗体信息清空
AdminLogin.Pass.Text = ""
AdminLogin.Show '显示注销(登录)窗体
End Sub
Private Sub Command4_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -