📄 frm_tjcxxz.frm
字号:
VERSION 5.00
Begin VB.Form frm_TJCX
BorderStyle = 1 'Fixed Single
Caption = "工时统计查询"
ClientHeight = 1410
ClientLeft = 45
ClientTop = 330
ClientWidth = 3900
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1410
ScaleWidth = 3900
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton cmdexit
Caption = "退出(&E)"
Height = 300
Left = 1860
TabIndex = 3
Top = 945
Width = 1275
End
Begin VB.CommandButton cmdOK
Caption = "确定(&Q)"
Height = 300
Left = 600
TabIndex = 2
Top = 945
Width = 1275
End
Begin VB.OptionButton Op2
Caption = "项目统计查询"
Height = 315
Left = 2340
TabIndex = 1
Top = 180
Width = 1500
End
Begin VB.OptionButton Op1
Caption = "部门统计查询"
Height = 255
Left = 300
TabIndex = 0
Top = 225
Value = -1 'True
Width = 1560
End
End
Attribute VB_Name = "frm_TJCX"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdExit_Click()
Unload Me
End Sub
Private Sub cmdOK_Click()
If Op1.Value = True Then
frm_BMtjcx.Show
Unload Me
End If
If Op2.Value = True Then
Frm_XMtjcx.Show
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -