📄 frmdepman.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form FrmDepMan
Caption = "部门管理"
ClientHeight = 4800
ClientLeft = 60
ClientTop = 345
ClientWidth = 6330
LinkTopic = "Form1"
ScaleHeight = 4800
ScaleWidth = 6330
StartUpPosition = 3 '窗口缺省
Begin MSComctlLib.ImageList ImageList1
Left = 240
Top = 120
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 32
ImageHeight = 32
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 5
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmDepMan.frx":0000
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmDepMan.frx":2992
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmDepMan.frx":5324
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmDepMan.frx":7CB6
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmDepMan.frx":A648
Key = ""
EndProperty
EndProperty
End
Begin VB.CommandButton Cmd_Add
BackColor = &H80000004&
Caption = "添 加"
Default = -1 'True
Height = 400
Left = 360
MouseIcon = "FrmDepMan.frx":CFDA
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 4
Top = 4200
Width = 1300
End
Begin VB.CommandButton Cmd_Modi
BackColor = &H80000004&
Caption = "修 改"
Height = 400
Left = 1800
MouseIcon = "FrmDepMan.frx":D2E4
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 3
Top = 4200
Width = 1300
End
Begin VB.CommandButton Cmd_Del
BackColor = &H80000004&
Caption = "删 除"
Height = 400
Left = 3240
MouseIcon = "FrmDepMan.frx":D5EE
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 2
Top = 4200
Width = 1300
End
Begin VB.CommandButton Cmd_Back
BackColor = &H80000004&
Cancel = -1 'True
Caption = "返 回"
Height = 400
Left = 4680
MouseIcon = "FrmDepMan.frx":D8F8
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 1
Top = 4200
Width = 1300
End
Begin MSComctlLib.TreeView TreeView1
Height = 3735
Left = 360
TabIndex = 0
Top = 240
Width = 5655
_ExtentX = 9975
_ExtentY = 6588
_Version = 393217
LabelEdit = 1
Style = 7
HotTracking = -1 'True
SingleSel = -1 'True
ImageList = "ImageList1"
BorderStyle = 1
Appearance = 1
MousePointer = 99
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.Dep_name
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.Dep_Id) = True Then
MsgBox CurDep.Dep_name + " 包含下级部门,不能删除"
Exit Sub
End If
'如果部门中包含员工,则不能删除
If MyDep.HaveEmp(CurDep.Dep_Id) = True Then
MsgBox CurDep.Dep_name + " 包含员工,不能删除"
Exit Sub
End If
'确定删除
If MsgBox("是否确定要删除 " + Trim(TreeView1.SelectedItem.Text), vbYesNo, "请确认") = vbNo Then
Exit Sub
End If
Call CurDep.Delete(CurDep.Dep_Id)
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.Dep_name
FrmDepEdit.txtDescribe = CurDep.Describe
FrmDepEdit.Modify = True
FrmDepEdit.Show 1
TreeView1_Click
End Sub
Private Sub Form_Load()
Dim TmpNode As Node
'根据用户类型设置界面
If CurUser.User_type = 1 Or CurUser.User_type = 3 Or CurUser.User_type = 4 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
End Sub
Private Sub TreeView1_Click()
Dim Focuskey As String
'根据关键字获取部门信息
Focuskey = TreeView1.SelectedItem.Key
CurDep.Dep_name = TreeView1.SelectedItem.Text
CurDep.Dep_Id = Val(Right(TreeView1.SelectedItem.Key, Len(TreeView1.SelectedItem.Key) - 1))
If Focuskey = "a0" Then '根结点
Exit Sub
End If
'如果包含子结点,则设置图像格式
If CurDep.HaveSon(CurDep.Dep_Id) = False Then
TreeView1.SelectedItem.ExpandedImage = 4
TreeView1.SelectedItem.Image = 4
TreeView1.SelectedItem.SelectedImage = 5
End If
'读取CurDep中的所有部门信息
CurDep.GetInfo (CurDep.Dep_Id)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -