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

怎的知道collection是否为空

2013-06-19 
怎样知道collection是否为空?dim aaa as collectionmsgbox aaa.count用以上代码会出错,用isempty/isnull总

怎样知道collection是否为空?
dim aaa as collection
msgbox aaa.count

用以上代码会出错,用isempty/isnull总是返回false,有什么办法呢,不然只有用on error resume next了?谢谢。 collection vb6
[解决办法]
Dim aaa As Collection
If ObjPtr(aaa) <> 0 Then
    MsgBox aaa.Count
Else
    Set aaa = New Collection
    MsgBox aaa.Count
End If

热点排行