?? coreform.frm
字號:
VERSION 5.00
Begin VB.Form CoreForm
Caption = "核心窗體"
ClientHeight = 6615
ClientLeft = 60
ClientTop = 345
ClientWidth = 9435
LinkTopic = "Form1"
MDIChild = -1 'True
ScaleHeight = 6615
ScaleWidth = 9435
WindowState = 2 'Maximized
Begin VB.CommandButton cmdAnalysis
Caption = "統(tǒng)計報表"
Height = 735
Left = 3000
TabIndex = 4
Top = 4920
Width = 2655
End
Begin VB.CommandButton cmdPayOff
Caption = "工資發(fā)放"
Height = 735
Left = 3000
TabIndex = 3
Top = 3840
Width = 2655
End
Begin VB.CommandButton cmdSpecial
Caption = "特殊項管理"
Height = 735
Left = 3000
TabIndex = 2
Top = 2760
Width = 2655
End
Begin VB.CommandButton cmdPosition
Caption = "職位管理"
Height = 735
Left = 3000
TabIndex = 1
Top = 1680
Width = 2655
End
Begin VB.CommandButton cmdHR
Caption = "人員管理"
Height = 495
Left = 3000
TabIndex = 0
Top = 600
Width = 2655
End
End
Attribute VB_Name = "CoreForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdAnalysis_Click()
AnaForm.Show
End Sub
'
'調(diào)用人員管理窗體
'
Private Sub cmdHR_Click()
HRForm.Show
End Sub
'
'調(diào)用發(fā)放工資窗體
'
Private Sub cmdPayOff_Click()
PayForm.Show
End Sub
'
'調(diào)用職位管理窗體
'
Private Sub cmdPosition_Click()
PosForm.Show
End Sub
'
'調(diào)用特殊項窗體
'
Private Sub cmdSpecial_Click()
SpecialForm.Show
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -