Projects

Find all our projects in development below.
All source code is GNU General Public License (GPL)

QuickQuery Half-Life Edition

Browsing QuickQuery HL Edition/CMyItemDatas.cls (1.38 KB)

VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
  Persistable = 0  'NotPersistable
  DataBindingBehavior = 0  'vbNone
  DataSourceBehavior  = 0  'vbNone
  MTSTransactionMode  = 0  'NotAnMTSObject
END
Attribute VB_Name = "CMyItemDatas"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Attribute VB_Ext_KEY = "SavedWithClassBuilder6" ,"Yes"
Attribute VB_Ext_KEY = "Collection" ,"CMyItemData"
Attribute VB_Ext_KEY = "Member0" ,"CMyItemData"
Attribute VB_Ext_KEY = "Top_Level" ,"Yes"

Private mCol As Collection

Public Function Add(sKey As String) As CMyItemData
    'create a new object
    Dim objNewMember As CMyItemData
    Set objNewMember = New CMyItemData

    mCol.Add objNewMember, sKey

    'return the object created
    Set Add = objNewMember
    Set objNewMember = Nothing

End Function

Public Property Get Item(vntIndexKey As Variant, Optional Source As String) As CMyItemData
Attribute Item.VB_UserMemId = 0
  On Error GoTo hError
  Set Item = mCol(vntIndexKey)
hError:
End Property

Public Property Get Count() As Long
    Count = mCol.Count
End Property

Public Sub Remove(vntIndexKey As Variant)
    mCol.Remove vntIndexKey
End Sub

Private Sub Class_Initialize()
    Set mCol = New Collection
End Sub

Private Sub Class_Terminate()
    Set mCol = Nothing
End Sub

Download QuickQuery HL Edition/CMyItemDatas.cls

Back to file list


Back to project page