VBA System.Collections.Queue

时间:2018-02-26 14:29:07

标签: vba stack queue

我刚刚发现了here内置的' VBA提供StacksQueues。它的编写方式,我无法看到Queue对象的属性和方法。

Dim queue As Object
Set queue = CreateObject("System.Collections.Queue") 'Create the Queue

queue.Enqueue "Hello"   'VBE does not show the available properties and methods

所以我的问题是:是否有一个我可以使用的参考,这将允许我早期绑定并受益于VBE自动完成?类似的东西:

Dim queue As System.Collections.Queue   'not working

1 个答案:

答案 0 :(得分:2)

PRIMARY KEYMedicalRecord would have是来自.Net框架的COM对象,它们不能与早期绑定一起使用。 (正如@Florent B.在评论中提到的那样)。

但是,如果您需要查看COM对象的属性,您可以随时查看MSDN站点(在那里非常明确):https://msdn.microsoft.com/en-us/library/system.collections.queue(v=vs.110).aspx

或者打开Visual Studio并从那里检查IntelliSense。几乎任何写在那里的东西都有效:

Stack