如何使用“类模块”或“模块”在 Visual Basic 应用程序中?

发布于 2024-12-05 18:34:45 字数 214 浏览 1 评论 0原文

我正在尝试在 中创建一个集合不知道该怎么做。任何人都可以向我解释这一点或向我发送一些链接吗?

我已经在同一“语言问题”上研究了几个小时。我查过SO、google、MSDN和F1帮助都无济于事。

I'm trying to create a collection in 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我早已燃尽 2024-12-12 18:34:45

基本方法是:

声明一个 Collection 对象

Dim oCol As Collection

创建该对象的实例

Set oCol = New Collection

将东西添加到集合中

oCol.Add Item:=1, Key:="Item1IsANumber"
oCol.Add Item:="SomeString", Key:="Item2IsAString"

参考项目

z = oCol.Item(1)  ' z = 1
z = oCol.Item(2)  ' z = "SomeString"
z = oCol.Item("Item1IsANumber")  ' z = 1
z = oCol.Item("Item2IsAString")  ' z = "SomeString"

CPearson.com 是很多东西的很好的参考 vba

这里有一个 链接到集合页面

The basic approach is:

Declare a Collection object

Dim oCol As Collection

Create an instance of the object

Set oCol = New Collection

Add things to the collection

oCol.Add Item:=1, Key:="Item1IsANumber"
oCol.Add Item:="SomeString", Key:="Item2IsAString"

Refer to the items

z = oCol.Item(1)  ' z = 1
z = oCol.Item(2)  ' z = "SomeString"
z = oCol.Item("Item1IsANumber")  ' z = 1
z = oCol.Item("Item2IsAString")  ' z = "SomeString"

CPearson.com is a good reference for lots of things vba

Here's a Link to a collections page

雪花飘飘的天空 2024-12-12 18:34:45

您能否更明确地说明您想要制作的集合 - 下面是许多更好的类模块和集合链接的集合。

类模块

  1. Walkenbacks 颜色按钮类模块
  2. Pearson 的类模块
  3. Peltier,图表事件类模块

字典 v集合

  1. Patrick Matthews 在 VBA 中使用字典类

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

  1. Walkenbacks colour button class module
  2. Pearson on class modules
  3. Peltier, Chart event class module

Dictionaries v Collections

  1. Patrick Matthews Using the Dictionary Class in VBA
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文