📄 frmmain.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.MDIForm frmMain
BackColor = &H8000000C&
Caption = "人事管理信息系统"
ClientHeight = 6855
ClientLeft = 165
ClientTop = 450
ClientWidth = 9465
LinkTopic = "MDIForm1"
StartUpPosition = 2 '屏幕中心
Begin MSComctlLib.StatusBar sbStatusBar
Align = 2 'Align Bottom
Height = 270
Left = 0
TabIndex = 0
Top = 6585
Width = 9465
_ExtentX = 16695
_ExtentY = 476
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 3
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
AutoSize = 1
Object.Width = 11060
Text = "Status"
TextSave = "Status"
EndProperty
BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 6
AutoSize = 2
TextSave = "2003-12-15"
EndProperty
BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 5
AutoSize = 2
TextSave = "15:16"
EndProperty
EndProperty
End
Begin VB.Menu menuSystem
Caption = "系统管理"
Begin VB.Menu menuAddUser
Caption = "添加用户"
End
Begin VB.Menu menuModifyUser
Caption = "修改用户密码"
End
Begin VB.Menu menuDelUser
Caption = "删除用户"
End
Begin VB.Menu menuBlank
Caption = "-"
End
Begin VB.Menu menuExit
Caption = "退出"
End
End
Begin VB.Menu menuEmployee
Caption = "员工信息管理"
Begin VB.Menu menuAddEmployee
Caption = "添加员工信息"
End
Begin VB.Menu menuModifyEmployee
Caption = "编辑员工信息"
End
Begin VB.Menu menuInquiryEmployee
Caption = "查询员工信息"
End
End
Begin VB.Menu menuDuty
Caption = "考勤管理"
Begin VB.Menu menuAddDuty
Caption = "添加考勤信息"
End
Begin VB.Menu menuModifyDuty
Caption = "编辑考勤信息"
End
Begin VB.Menu menuInquiryDuty
Caption = "查询考勤信息"
End
End
Begin VB.Menu MenuSalary
Caption = "工资管理"
Begin VB.Menu menuAddSalary
Caption = "添加工资信息"
End
Begin VB.Menu menuModifySalary
Caption = "编辑工资信息"
End
Begin VB.Menu menuInquirySalary
Caption = "查询工资信息"
End
End
Begin VB.Menu MenuTrain
Caption = "培训计划管理"
Begin VB.Menu menuAddTrain
Caption = "添加培训计划信息"
End
Begin VB.Menu menuModifyTrain
Caption = "编辑培训计划信息"
End
Begin VB.Menu menuInquiryTrain
Caption = "查询培训计划信息"
End
End
Begin VB.Menu menuWelfare
Caption = "福利费管理"
Begin VB.Menu menuAddWelfare
Caption = "添加福利费信息"
End
Begin VB.Menu menuModifyWelfare
Caption = "编辑福利费信息"
End
Begin VB.Menu menuInquiryWelfare
Caption = "查询福利费信息"
End
End
Begin VB.Menu menuHelp
Caption = "帮助"
Begin VB.Menu menuAbout
Caption = "关于"
End
End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub menuAbout_Click()
frmAbout.Show
sbStatusBar.Panels(1).Text = "帮助"
End Sub
Private Sub menuAddDuty_Click()
frmAddDuty.Show
sbStatusBar.Panels(1).Text = "添加考勤信息"
End Sub
Private Sub menuAddEmployee_Click()
frmAddEmployee.Show
sbStatusBar.Panels(1).Text = "添加员工信息"
End Sub
Private Sub menuAddSalary_Click()
frmAddSalary.Show
sbStatusBar.Panels(1).Text = "添加工资信息"
End Sub
Private Sub menuAddTrain_Click()
frmAddTrain.Show
sbStatusBar.Panels(1).Text = "添加培训计划信息"
End Sub
Private Sub menuAddUser_Click()
frmAdduser.Show
sbStatusBar.Panels(1).Text = "添加用户"
End Sub
Private Sub menuAddWelfare_Click()
FrmAddWelfare.Show
sbStatusBar.Panels(1).Text = "添加福利费用信息"
End Sub
Private Sub menuDelUser_Click()
frmDelUser.Show
sbStatusBar.Panels(1).Text = "删除用户"
End Sub
Private Sub menuExit_Click()
End
End Sub
Private Sub menuInquiryDuty_Click()
frmInquireDuty.Show
sbStatusBar.Panels(1).Text = "查询考勤信息"
End Sub
Private Sub menuInquiryEmployee_Click()
frmInquireEmployee.Show
sbStatusBar.Panels(1).Text = "查询员工信息"
End Sub
Private Sub menuInquirySalary_Click()
frmInquireSalary.Show
sbStatusBar.Panels(1).Text = "查询工资信息"
End Sub
Private Sub menuInquiryTrain_Click()
frmInquireTrain.Show
sbStatusBar.Panels(1).Text = "查询培训计划信息"
End Sub
Private Sub menuInquiryWelfare_Click()
frmInquireWelfare.Show
sbStatusBar.Panels(1).Text = "查询福利费用信息"
End Sub
Private Sub menuModifyDuty_Click()
frmModifyDuty.Show
sbStatusBar.Panels(1).Text = "编辑考勤信息"
End Sub
Private Sub menuModifyEmployee_Click()
frmModifyEmployee.Show
sbStatusBar.Panels(1).Text = "编辑员工信息"
End Sub
Private Sub menuModifySalary_Click()
frmModifySalary.Show
sbStatusBar.Panels(1).Text = "修改工资信息"
End Sub
Private Sub menuModifyTrain_Click()
frmModifyTrain.Show
sbStatusBar.Panels(1).Text = "编辑培训计划信息"
End Sub
Private Sub menuModifyUser_Click()
frmModifyuserinfo.Show
sbStatusBar.Panels(1).Text = "修改密码"
End Sub
Private Sub menuModifyWelfare_Click()
frmModifyWelfare.Show
sbStatusBar.Panels(1).Text = "修改福利费用信息"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -