📄 frmmain.frm
字号:
VERSION 5.00
Begin VB.MDIForm frmMain
AutoShowChildren= 0 'False
BackColor = &H8000000C&
Caption = "企业工资管理系统 "
ClientHeight = 10830
ClientLeft = 165
ClientTop = 450
ClientWidth = 12765
LinkTopic = "MDIForm1"
StartUpPosition = 2 '屏幕中心
WindowState = 2 'Maximized
Begin VB.PictureBox Picture1
Align = 1 'Align Top
BackColor = &H80000001&
Height = 10695
Left = 0
ScaleHeight = 10635
ScaleWidth = 12705
TabIndex = 0
Top = 0
Width = 12765
Begin VB.Label Label8
BackStyle = 0 'Transparent
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0FFFF&
Height = 375
Left = 8040
TabIndex = 1
Top = 6960
Width = 1335
End
End
Begin VB.Menu System
Caption = "系统管理(&S)"
Begin VB.Menu ChangePWD
Caption = "修改密码"
End
Begin VB.Menu Exit
Caption = "退出"
Shortcut = ^E
End
End
Begin VB.Menu Info
Caption = "档案管理(&D)"
Begin VB.Menu ZGInfo
Caption = "职工信息"
Shortcut = ^Z
End
Begin VB.Menu BMInfo
Caption = "部门信息"
Shortcut = ^D
End
End
Begin VB.Menu Salary
Caption = "工资管理(&G)"
Begin VB.Menu BSalary
Caption = "基本工资设置"
Shortcut = ^B
End
Begin VB.Menu AttInfo
Caption = "考勤信息统计"
Shortcut = ^T
End
Begin VB.Menu JSalary
Caption = "工资结算"
Shortcut = ^J
End
Begin VB.Menu ChangeGZ
Caption = "固定工资调整"
End
End
Begin VB.Menu Search
Caption = "查询(&C)"
Begin VB.Menu Search1
Caption = "查询员工工资"
End
Begin VB.Menu Search2
Caption = "查询部门工资总汇"
End
End
Begin VB.Menu PrintBB
Caption = "打印报表(&P)"
Begin VB.Menu PrintYL
Caption = "打印预览"
Shortcut = ^P
End
End
Begin VB.Menu Help
Caption = "系统帮助(&H)"
Begin VB.Menu About
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 About_Click()
frmAbout.Show
End Sub
Private Sub AddUser_Click()
frmAddUser.Show
End Sub
Private Sub AttInfo_Click()
frmAttInfo.Show
End Sub
Private Sub BMInfo_Click()
frmBMInfo.Show
End Sub
Private Sub BSalary_Click()
frmBSalary.Show
End Sub
Private Sub ChangeGZ_Click()
frmChangeGZ.Show
End Sub
Private Sub ChangePWD_Click()
frmChangePWD.Show
End Sub
Private Sub Exit_Click()
frmExit.Show
End Sub
Private Sub JSalary_Click()
frmJSalary.Show
End Sub
Private Sub Print_Click()
DataReport1.Show
End Sub
Private Sub PrintYL_Click()
DataReport1.Show
End Sub
Private Sub Search1_Click()
frmSearch1.Show
End Sub
Private Sub Search2_Click()
frmSearch2.Show
End Sub
Private Sub ZGInfo_Click()
frmZGInfo.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -