📄 frmac_dailyselect.frm
字号:
VERSION 5.00
Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
Begin VB.Form frmAC_DailySelect
BorderStyle = 3 'Fixed Dialog
Caption = "日报表:选择范围"
ClientHeight = 2475
ClientLeft = 45
ClientTop = 330
ClientWidth = 4365
HelpContextID = 1054
Icon = "frmAC_DailySelect.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2475
ScaleWidth = 4365
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.CheckBox ChkBlankKm
Caption = "包含空白科目"
Height = 315
Left = 2160
TabIndex = 6
Top = 1380
Visible = 0 'False
Width = 1425
End
Begin VB.TextBox txtSubjectCodeFrom
Height = 285
Left = 1200
MaxLength = 18
TabIndex = 3
Top = 615
Width = 2265
End
Begin VB.CommandButton cmdSubjectHelpOne
Height = 285
Left = 3465
Picture = "frmAC_DailySelect.frx":000C
Style = 1 'Graphical
TabIndex = 17
Top = 615
Width = 300
End
Begin VB.CommandButton cmdSubjectHelpTwo
Height = 285
Left = 3450
Picture = "frmAC_DailySelect.frx":010E
Style = 1 'Graphical
TabIndex = 16
Top = 1005
Width = 300
End
Begin VB.TextBox txtSubjectCodeTo
Height = 285
Left = 1200
MaxLength = 18
TabIndex = 4
Top = 1005
Width = 2265
End
Begin VB.CheckBox chkUnChecked
Caption = "包括未记账凭证"
Height = 255
Left = 210
TabIndex = 5
Top = 1410
Value = 1 'Checked
Width = 1605
End
Begin VB.CommandButton cmdHelp
Caption = "帮助(&H)"
CausesValidation= 0 'False
Height = 345
Left = 3120
TabIndex = 9
Top = 1980
Width = 1065
End
Begin VB.CommandButton cmdCancel
Cancel = -1 'True
Caption = "取消(&C)"
CausesValidation= 0 'False
Height = 345
Left = 2010
TabIndex = 8
Top = 1980
Width = 1065
End
Begin VB.CommandButton cmdOK
Caption = "确认(&O)"
Height = 345
Left = 900
TabIndex = 7
Top = 1980
Width = 1065
End
Begin MSComCtl2.UpDown updDay
Height = 285
Left = 3480
TabIndex = 15
Top = 195
Width = 270
_ExtentX = 423
_ExtentY = 503
_Version = 393216
Value = 1
BuddyControl = "txtDay"
BuddyDispid = 196618
OrigLeft = 3690
OrigTop = 270
OrigRight = 3885
OrigBottom = 555
Max = 31
Min = 1
SyncBuddy = -1 'True
BuddyProperty = 65547
Enabled = -1 'True
End
Begin MSComCtl2.UpDown updMonth
Height = 285
Left = 2550
TabIndex = 14
Top = 195
Width = 270
_ExtentX = 423
_ExtentY = 503
_Version = 393216
Value = 1
BuddyControl = "txtMonth"
BuddyDispid = 196619
OrigLeft = 2760
OrigTop = 240
OrigRight = 2955
OrigBottom = 525
Max = 12
Min = 1
SyncBuddy = -1 'True
BuddyProperty = 65547
Enabled = -1 'True
End
Begin VB.TextBox txtDay
Height = 285
Left = 3060
MaxLength = 2
TabIndex = 2
Top = 195
Width = 400
End
Begin VB.TextBox txtMonth
Height = 285
Left = 2130
MaxLength = 2
TabIndex = 1
Top = 195
Width = 400
End
Begin VB.TextBox txtYear
Height = 285
Left = 1200
Locked = -1 'True
TabIndex = 0
Top = 180
Width = 645
End
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "起始科目:"
Height = 180
Left = 210
TabIndex = 19
Top = 690
Width = 900
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "终止科目:"
Height = 180
Index = 1
Left = 210
TabIndex = 18
Top = 1065
Width = 900
End
Begin VB.Line Line1
X1 = 180
X2 = 4170
Y1 = 1770
Y2 = 1770
End
Begin VB.Line Line2
BorderColor = &H80000005&
X1 = 120
X2 = 4200
Y1 = 1785
Y2 = 1785
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "日"
Height = 180
Index = 0
Left = 3780
TabIndex = 13
Top = 240
Width = 180
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "月"
Height = 180
Left = 2850
TabIndex = 12
Top = 240
Width = 180
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "年"
Height = 180
Left = 1890
TabIndex = 11
Top = 240
Width = 180
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "日期:"
Height = 180
Left = 570
TabIndex = 10
Top = 240
Width = 540
End
End
Attribute VB_Name = "frmAC_DailySelect"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private m_sMonthFrom As String, m_sMonthTo As String '查询起始月份、截止月份
Private m_sSubjectCodeFrom As String, m_sSubjectNameFrom As String '查询起始科目代码、科目名称
Private m_sSubjectCodeTo As String, m_sSubjectNameTo As String '查询截止科目代码、科目名称
Private m_bIncludeNotRecordVoucher As Boolean '是否包含未记账凭证
Private m_bIncludeBlankKm As Boolean
Private CSubject As New clsSubject
Public Ok As Boolean
Public Property Get usSubjectCodeFrom() As String
usSubjectCodeFrom = m_sSubjectCodeFrom
End Property
Public Property Get usSubjectNameFrom() As String
usSubjectNameFrom = m_sSubjectNameFrom
End Property
Public Property Get usSubjectCodeTo() As String
usSubjectCodeTo = m_sSubjectCodeTo
End Property
Public Property Get usSubjectNameTo() As String
usSubjectNameTo = m_sSubjectNameTo
End Property
Public Property Get ubIncludeNotRecordVoucher() As Boolean
ubIncludeNotRecordVoucher = m_bIncludeNotRecordVoucher
End Property
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -