Thread: data structures
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default data structures

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)


"vivmaha" wrote in message
...
Hi

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

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

Thanks.
Vivek.