C
Chris
how can test the existence of an item within a collection vba ?
i declare as it
dim toto as new collection
toto.add item:=titi, key:=1
toto.add item:=tata, key:=2
then i need to know if tutu is in the collection but my problem is that using
toto.item("tutu") guve me an error and it seems that vba collection doesn't not have an exist method.
Do you have a solution ?
i declare as it
dim toto as new collection
toto.add item:=titi, key:=1
toto.add item:=tata, key:=2
then i need to know if tutu is in the collection but my problem is that using
toto.item("tutu") guve me an error and it seems that vba collection doesn't not have an exist method.
Do you have a solution ?