📄 frmchenji.frm
字号:
VERSION 5.00
Begin VB.Form frmsys
Caption = "系统管理"
ClientHeight = 3945
ClientLeft = 60
ClientTop = 450
ClientWidth = 7905
LinkTopic = "Form1"
Picture = "frmchenji.frx":0000
ScaleHeight = 3945
ScaleWidth = 7905
StartUpPosition = 3 '窗口缺省
Begin VB.Label Label7
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "退出系统"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 6360
TabIndex = 6
Top = 2520
Width = 1320
End
Begin VB.Label Label6
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "修改密码"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 4680
TabIndex = 5
Top = 3480
Width = 1320
End
Begin VB.Label Label5
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "更改权限"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 3240
TabIndex = 4
Top = 2400
Width = 1320
End
Begin VB.Label Label4
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "删除用户"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 1560
TabIndex = 3
Top = 3600
Width = 1320
End
Begin VB.Label Label3
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "添加用户"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 120
TabIndex = 2
Top = 2400
Width = 1320
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
BorderStyle = 1 'Fixed Single
Caption = "退出"
BeginProperty Font
Name = "华文行楷"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 510
Left = 6600
TabIndex = 1
Top = 360
Width = 930
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "系统管理"
BeginProperty Font
Name = "华文彩云"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 750
Left = 2520
TabIndex = 0
Top = 120
Width = 2880
End
Begin VB.Image Image5
Height = 1350
Left = 6240
Picture = "frmchenji.frx":9115
Top = 1320
Width = 1440
End
Begin VB.Image Image4
Height = 1515
Left = 4680
Picture = "frmchenji.frx":D345
Top = 2160
Width = 1440
End
Begin VB.Image Image3
Height = 1395
Left = 3120
Picture = "frmchenji.frx":11839
Top = 1200
Width = 1440
End
Begin VB.Image Image2
Height = 1500
Left = 1560
Picture = "frmchenji.frx":15A6A
Top = 2280
Width = 1440
End
Begin VB.Image Image1
Height = 1365
Left = 0
Picture = "frmchenji.frx":19D9E
Top = 1200
Width = 1440
End
End
Attribute VB_Name = "frmsys"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Image1_Click()
If gblnPurview = True Then
frmadduser.Show 1
Else
MsgBox "对不起,您是普通用户,不能添加用户", vbOKOnly, "错误提示"
End If
End Sub
Private Sub Image2_Click()
If gblnPurview = True Then
frmdeluser.Show 1
Else
MsgBox "对不起,您是普通用户,不能删除用户", vbOKOnly, "错误提示"
End If
End Sub
Private Sub Image3_Click()
If gblnPurview = True Then
frmgqx.Show 1
Else
MsgBox "对不起,您是普通用户,不能更改权限", vbOKOnly, "错误提示"
End If
End Sub
Private Sub Image4_Click()
If gblnPurview = True Then
frmgmm.Show 1
Else
MsgBox "对不起,您是普通用户,不能更改密码", vbOKOnly, "错误提示"
End If
End Sub
Private Sub Image5_Click()
Dim myexit As Integer
myexit = MsgBox("您确定退出系统吗?", vbYesNo + vbQuestion + vbDefaultButton2, "提示")
If myexit = vbYes Then End
End Sub
Private Sub Label2_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -