Can a class extend the Collection object?
I'm trying to extend functionality of the VBA Collection
object in a new class and make this class an inheritant of Collection
, but the Implements Collection
statement gives me the following error:
Bad interface for Implements: method has underscore in its name.
What underscore?! Add
, Item
, Remove
, and Count
are the only methods listed in the documentation for Collection
. All four are underscore-free.
EDIT: To clarify, I'm making a class called UniformCollection
(that only accepts members that are all of the same type, inspired by this approach). I'd like it to implement Collection
, so that a UniformCollection
is a Collection
and can be used in place of a Collection
when calling other objects' methods, etc.
I know I have to write delegating methods/properties for Add, Item, etc., and a NewEnum property for For Each
to work, and I've done so already.
My problem is that the Implements Collection
statement gives me the error stated above.
Bonus question: is Count
a method or a property of Collection
? Help calls it a property, but the Object Browser in the VBA editor calls it a function i.e. met开发者_Python百科hod (flying yellow box).
You are running into one of the limitations of Implements in VBA. You can't implement another class if the other class has any public methods or properties with an underscore in the name. Collection
class of course has _NewEnum
but any underscore will cause a problem.
For example, if you created a class AddressClass
that had the following:
Public Address_City As String
Then created another class CustomerAddress
:
Implements AddressClass
Private Property Get ClassInterface_Address_City() As String
End Property
Private Property Let ClassInterface_Address_City(ByVal RHS As String)
End Property
When you compile, you will get an error "Object module needs to implement 'Address_City' for interface 'AddressClass'." Changing the property to AddressCity
makes the error go away.
Possible solution: If I understand correctly, you want to implement the collection class so you can pass your new class to methods that take in collections as parameters. Is it possible to alter those methods? My suggestion would be to create your own collection class MyCollection
and then implement it instead. i.e. UniformMyCollection
That way you can completely avoid problems with underscores.
As for Count
, I would trust the Object Browser over the help text anytime. On the other hand, if you are creating your own collection class, it doesn't matter which one you choose.
VBA has a lot of limitations on what classes you can implement. The NewEnum is tripping up Collection, but even if it wasn't, there could very well be something else in that class to trip it up. I think it reports the first problem it finds.
Because Collection has so few properties and methods, I just rewrite them.
Private mcolParts As Collection
Public Sub Add(clsPart As CPart)
mcolParts.Add clsPart, CStr(clsPart.PartID)
End Sub
Public Property Get Count() As Long
Count = mcolParts.Count
End Property
Public Property Get Item(vItm As Variant) As CPart
Set Item = mcolParts.Item(vItm)
End Property
Public Sub Remove(vIndex As Variant)
mcolParts.Remove vIndex
End Sub
In don't know why the OB shows methods (they look like green boxes to me). For my money, methods either change multiple properties or interact with something outside of the class. Everything else is a property. I'd call both Count and Index properties.
Dick Kusleika has most of it, but if you want to use For Each
on your custom class, you'll also need:
'--- required additional property that allow to enumerate the collection with For Each
Public Property Get NewEnum() As IUnknown
Set NewEnum = m_ColParts.[_NewEnum]
End Property
This isn't discussed in either of the links I found in my Favorites (this one or this one), but they're both worth reading. If I find the site that talks about NewEnum I'll do an Edit to add it.
EDIT
Neither of these links are the one I was looking for, either, but both discuss the NewEnum property (including a little extra voodoo that neeeds to be added):
Here and here.
Both of these talk about Excel, but the VBA is the same in other Office applications (including the need for the export->text edit->import process to get "Attributes").
Re RolandTumble's note on "NewEnum" :
My own experience in Access 2003 is that "For Each" works fine by importing code including the line
Attribute NewEnum.VB_UserMemId = -4
... but after I "/decompile" the file (command line switch), the line has been removed (verified on export) and the "For Each" does not function.
Unfortunately I need to use "/Decompile" when "Compress and Repair" does not fix things for me.
精彩评论