I have an class that creates a collection - this all works fine,
now the specs have changed, and they are calling for
a zero based collection, instead of the one based collection
that we've all grown to love....
so the question is -
is there a way to create a zero based collection
instead of a 1's based collection??
thanks
tony
04-25-2005, 12:24 PM
Phil Weber
You can create a custom collection class that wraps the VB collection object. In its Item method, return Index + 1 from the VB collection.
04-26-2005, 09:02 AM
pithhelmet
I utilized a scripting.dictionary to accomplish the task...