View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Max Max is offline
external usenet poster
 
Posts: 390
Default Adding to A Collection

Hi -

Here's my latest question. I have created a collection. When I add to that
collection, i use an array to populate from a text file delimited by a pipe
(|):

arrDATA(x) = Split(strNextLine,"|"
collDATA.Add KEY:=strNextCollKey, Item:=arrDATA(x)

So the collection item will take the length of the array. Later, I would
like to attach more data to that collection item, thus increasing it's
length. How can this be accomplished? Do I have to remove the item and add
it again?

--
Thanks!
Max