I just discovered here the 'built-in' Stacks and Queues available from VBA. The way it's written, I can't see the properties and methods of the Queue object.
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
So my question is: is there a reference I can use that will allow me to have early binding and benefit from the VBE autocomplete ? Something like:
Dim queue As System.Collections.Queue 'not working
StacksandQueuesavailable from VBA. Those are COM objects from the .Net framework which may be missing or unavailable depending on the setup. You can addmscorelib.dllto view the interfaces. - Florent B.