首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

如何样输出collection中保存的数据!一晚上没做出来

2012-02-14 
怎么样输出collection中保存的数据!急!一晚上没做出来。typemtypedimaasinterdimbasinterdimcasinterendtyp

怎么样输出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)

热点排行