📄 kcpddhs.cls
字号:
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "KcPddhs"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
'QQ:75347626
'MSN:whailin2000@hotmail.com
Option Explicit
Dim oKcPddhs As Collection
Public Property Get Name() As String
Name = "KcPddhs"
End Property
Private Sub Class_Initialize()
Set oKcPddhs = New Collection
End Sub
Public Sub Add(oKcPddh As KcPddh, Optional Needsave As Integer = 1)
Dim mKey As Integer
Dim vKcPddh As KcPddh
For Each vKcPddh In oKcPddhs
If mKey < vKcPddh.KcPddhKey Then
mKey = vKcPddh.KcPddhKey
End If
Next
oKcPddh.KcPddhKey = mKey + 1
If Needsave = 1 Then
oKcPddh.Save
End If
oKcPddhs.Add Item:=oKcPddh, Key:=CStr(mKey + 1)
End Sub
Public Sub Remove(Vindex, Optional Needdel As Integer = 1)
Dim oKcPddh As KcPddh
Set oKcPddh = Item(Vindex)
If Needdel = 1 And oKcPddh.KcPddhId = 1 Then
oKcPddh.Del
End If
oKcPddhs.Remove (Vindex)
Set oKcPddh = Nothing
End Sub
Public Property Get Count() As Integer
Count = oKcPddhs.Count
End Property
Public Function Item(Vindex) As KcPddh
Attribute Item.VB_UserMemId = 0
Set Item = oKcPddhs.Item(Vindex)
End Function
Public Sub ClearAll()
Dim I, Vcount As Integer
Vcount = oKcPddhs.Count
For I = 1 To Vcount
oKcPddhs.Remove (1)
Next
End Sub
Public Sub Fillbydb(Optional vWhereStr As String = "")
Dim oKcPddh As KcPddh
Dim Rs As ADODB.Recordset
Dim mKey As Integer
Dim mSqlStr As String
On Error GoTo Errorhandle
ClearAll
mSqlStr = "SELECT KcPddHDOCNO,KcPddHDAT,KcPddH_HwCkMc=HwCkMc,KcPddH_HwCkno,KcPddHSYSDAT,KcPddHSYSTIME,KcPddHNO FROM KcPddHREC,HWCKREC WHERE HWCKNO=KcPddH_HWCKNO"
If vWhereStr <> "" Then
mSqlStr = mSqlStr & " AND " & vWhereStr
End If
mSqlStr = mSqlStr & " ORDER BY KcPddHDOCNO"
Set Rs = Conn.Execute(mSqlStr)
mKey = 1
Do Until Rs.EOF
Set oKcPddh = New KcPddh
oKcPddh.KcPddhKey = mKey
oKcPddh.BatchLet Rs!KcPddhDocno, Rs!KcPddhDat, Rs!KcPddh_HwCkMc, Rs!KcPddh_HwCkno, Rs!KcPddhSysDat, Rs!KcPddhSysTime, Rs!KcPddhNo
oKcPddhs.Add Item:=oKcPddh, Key:=CStr(mKey)
Rs.MoveNext
mKey = mKey + 1
Loop
Rs.Close
Set Rs = Nothing
Exit Sub
Errorhandle:
If Not Rs Is Nothing Then
Rs.Close
End If
Set Rs = Nothing
Err.Raise vbObjectError + 1, , Err.Description
End Sub
Public Function NewEnum() As IUnknown
Attribute NewEnum.VB_UserMemId = -4
Attribute NewEnum.VB_MemberFlags = "40"
Set NewEnum = oKcPddhs.[_NewEnum]
End Function
Private Sub Class_Terminate()
ClearAll
Set oKcPddhs = Nothing
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -