如何使用“类模块”或“模块”在 Visual Basic 应用程序中?
我正在尝试在 vba 中创建一个集合不知道该怎么做。任何人都可以向我解释这一点或向我发送一些链接吗?
我已经在同一“语言问题”上研究了几个小时。我查过SO、google、MSDN和F1帮助都无济于事。
I'm trying to create a collection in vba and can't figure out how to do this. Can anyone either explain this to me or send me off to some links?
I've been working on this same "language issue" for several hours. I've checked SO, google, MSDN, and F1 help to no avail.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基本方法是:
声明一个 Collection 对象
创建该对象的实例
将东西添加到集合中
参考项目
CPearson.com
是很多东西的很好的参考 vba这里有一个 链接到集合页面
The basic approach is:
Declare a Collection object
Create an instance of the object
Add things to the collection
Refer to the items
CPearson.com
is a good reference for lots of things vbaHere's a Link to a collections page
您能否更明确地说明您想要制作的集合 - 下面是许多更好的类模块和集合链接的集合。
类模块
字典 v集合
Can you pls be more explicit about the collection you are looking to make - a collection of a number of the better class modules and collection links below.
Class Modules
Dictionaries v Collections