data structures

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

Does VBA have any data structures more complex than "Collection"?

I'm looking for things such as link list, hasmaps, etc.

Thanks.
Vivek.
 
Nothing built in to VBA other than a Collection. The Scripting Runtime
library adds a Dictionary object which is similar to a Collection, but
better and faster. Anything like a linked list would have to be built from
scratch.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting
www.cpearson.com
(email on the web site)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top