And when you want to use a collection you have to create the object and not just define it so you eaither have to do
VB Code:
Dim coll As [HL="#FFFF80"]New [/HL]Collection coll.Add "something"
or
VB Code:
Dim coll As Collection Set coll = New Collection coll.Add "something"




Reply With Quote