C006 コレクションの項目が見つかりません

存在しないコレクションメンバを参照しようとしました。例えば、コレクションのクラスが IntegerCollection であれば次のようになります。

Dim varV As Variant
Dim IntCol As New IntegerCollection("astring",10)
Print IntCol(3)		' Illegal because the collection doesn't have any
					' members.

コレクションを参照する前にメンバを追加するか、メンバを識別するインデックスを指定するか、参照を削除してください。