怎么样输出collection中保存的数据!急!一晚上没做出来。
type mtype
dim a as inter
dim b as inter
dim c as inter
end type
dim col as new collection
for i=1 to 10
mtype.a=i
mtype.b=i+1
mtype.c=i+2
col.add mtype
next i
大概就是这个意思。
定义一个结构体集。
往里面输许多条数据。/
然后再把每一条输出来。
请问怎么样才能实现
我查了MSDN上面没有具体介绍,。
/////////////////////////
哪位帮我看一下啊。怎么样把集合里的数据都输出来!
[解决办法]
Dim c As New Collection
c.Add "abc ", "a "
c.Add "xyz ", "x "
'分别用key和index显示数据
Debug.Print c.Item( "a "), c.Item(1)
Debug.Print c.Item( "x "), c.Item(2)