📄 frmdepman.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form FrmDepMan
BorderStyle = 1 'Fixed Single
Caption = "部门管理"
ClientHeight = 4665
ClientLeft = 45
ClientTop = 330
ClientWidth = 6105
Icon = "FrmDepMan.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4665
ScaleWidth = 6105
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton Cmd_Back
BackColor = &H80000004&
Cancel = -1 'True
Caption = "返 回"
Height = 400
Left = 4560
MouseIcon = "FrmDepMan.frx":0CCA
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 4
Top = 4080
Width = 1300
End
Begin VB.CommandButton Cmd_Del
BackColor = &H80000004&
Caption = "删 除"
Height = 400
Left = 3120
MouseIcon = "FrmDepMan.frx":0FD4
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 3
Top = 4080
Width = 1300
End
Begin VB.CommandButton Cmd_Modi
BackColor = &H80000004&
Caption = "修 改"
Height = 400
Left = 1680
MouseIcon = "FrmDepMan.frx":12DE
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 2
Top = 4080
Width = 1300
End
Begin VB.CommandButton Cmd_Add
BackColor = &H80000004&
Caption = "添 加"
Default = -1 'True
Height = 400
Left = 240
MouseIcon = "FrmDepMan.frx":15E8
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 1
Top = 4080
Width = 1300
End
Begin MSComctlLib.ImageList ImageList1
Left = 0
Top = 0
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483628
ImageWidth = 16
ImageHeight = 16
MaskColor = 16777215
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 5
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmDepMan.frx":18F2
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmDepMan.frx":4284
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmDepMan.frx":6C16
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmDepMan.frx":95A8
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmDepMan.frx":BF3A
Key = ""
EndProperty
EndProperty
End
Begin MSComctlLib.TreeView TreeView1
Height = 3735
Left = 240
TabIndex = 0
Top = 120
Width = 5655
_ExtentX = 9975
_ExtentY = 6588
_Version = 393217
HideSelection = 0 'False
LabelEdit = 1
Sorted = -1 'True
Style = 7
HotTracking = -1 'True
SingleSel = -1 'True
ImageList = "ImageList1"
BorderStyle = 1
Appearance = 1
MousePointer = 99
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
MouseIcon = "FrmDepMan.frx":E8CC
End
End
Attribute VB_Name = "FrmDepMan"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Cmd_Add_Click()
'初始化FrmDepEdit信息
FrmDepEdit.lblUpper = CurDep.DepName
FrmDepEdit.txtDep = ""
FrmDepEdit.txtDescribe = ""
FrmDepEdit.Modify = False
'打开编辑部门信息的窗体
FrmDepEdit.Show 1
TreeView1_Click
End Sub
Private Sub Cmd_Back_Click()
Unload Me
End Sub
Private Sub Cmd_Del_Click()
If TreeView1.SelectedItem.Key = "a0" Then
MsgBox "此项不能删除"
Exit Sub
End If
'如果当前部门包含下一级部门,则不能删除
If CurDep.HaveSon(CurDep.DepId) = True Then
MsgBox CurDep.DepName + " 包含下级部门,不能删除"
Exit Sub
End If
'如果部门中包含员工,则不能删除
If MyDep.HaveEmp(CurDep.DepId) = True Then
MsgBox CurDep.DepName + " 包含员工,不能删除"
Exit Sub
End If
'确定删除
If MsgBox("是否确定要删除 " + Trim(TreeView1.SelectedItem.Text), vbYesNo, "请确认") = vbNo Then
Exit Sub
End If
Call CurDep.Delete(CurDep.DepId)
TreeView1.Nodes.Remove TreeView1.SelectedItem.Index
TreeView1_Click
End Sub
Private Sub Cmd_Modi_Click()
'不能修改根结点
If TreeView1.SelectedItem.Key = "a0" Then
MsgBox "此项不能修改"
Exit Sub
End If
'将当前部门的信息赋值到编辑部门信息的窗口
FrmDepEdit.lblUpper = MyDep.GetName(CurDep.UpperId)
FrmDepEdit.txtDep = CurDep.DepName
FrmDepEdit.txtDescribe = CurDep.Describes
FrmDepEdit.Modify = True
FrmDepEdit.Show 1
TreeView1_Click
End Sub
Private Sub Form_Load()
Dim TmpNode As Node
'根据用户类型设置界面
If CurUser.User_type = 2 Then
Cmd_Add.Visible = False
Cmd_Modi.Visible = False
Cmd_Del.Visible = False
Cmd_Back.Left = 2400
End If
FocusDepName = "人事部" '默认选择人事部
Focuskey = ""
'设置根结点
Set TmpNode = TreeView1.Nodes.Add(, , "a0", "部门信息", 1, 3)
TmpNode.Selected = True
TmpNode.ExpandedImage = 2
'调用函数将所有部门添加到TreeView1中
Call Add_DepToTree(TreeView1, "a0")
'调用TreeView1_Click过程,读取当前节点数据
TreeView1_Click
End Sub
Private Sub TreeView1_Click()
Dim Focuskey As String
'根据关键字获取部门信息
Focuskey = TreeView1.SelectedItem.Key
CurDep.DepName = TreeView1.SelectedItem.Text
CurDep.DepId = Val(Right(TreeView1.SelectedItem.Key, Len(TreeView1.SelectedItem.Key) - 1))
If Focuskey = "a0" Then '根结点
Exit Sub
End If
'如果包含子结点,则设置图像格式
If CurDep.HaveSon(CurDep.DepId) = False Then
TreeView1.SelectedItem.ExpandedImage = 4
TreeView1.SelectedItem.Image = 4
TreeView1.SelectedItem.SelectedImage = 5
End If
'读取CurDep中的所有部门信息
CurDep.GetInfo (CurDep.DepId)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -