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:
  1. Dim coll As [HL="#FFFF80"]New [/HL]Collection
  2. coll.Add "something"

or

VB Code:
  1. Dim coll As Collection
  2. Set coll = New Collection
  3. coll.Add "something"