如何在 VBScript 中创建集合对象?
CreateObject
的参数应该是什么?
看这个例子:
Dim a
Set a = CreateObject("Collection") 'getting a runtime error saying ActiveX
' component can't create object: 'Collection
a.add(CreateObject("Collection"))
a.Items(0).Add(1)
MsgBox(a.Items(0).count)
MsgBox(a.Items(0).Item(0))
What should be the parameter for CreateObject
?
See this example:
Dim a
Set a = CreateObject("Collection") 'getting a runtime error saying ActiveX
' component can't create object: 'Collection
a.add(CreateObject("Collection"))
a.Items(0).Add(1)
MsgBox(a.Items(0).count)
MsgBox(a.Items(0).Item(0))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
for:
你可以这样迭代:
for:
you can iterate like this:
字典怎么样
how about a Dictionary
这是代码,它的功能强大:
Here is the code, its powerful: