PDA

View Full Version : LinkedList Implementation



ChloeRadshaw
10-28-2008, 04:38 AM
Hi All,

Does anyone know of a decent linked list implementation for VBA?

All I d like to be able to do is to add, get and remove items from the list but avoid having to redim the underlying array myself.

I can write it myself but am just amazed that this does not exist....

Bob Phillips
10-28-2008, 05:25 AM
In what context?

ChloeRadshaw
10-28-2008, 05:31 AM
VBA Context - ie a pre written class which allows linked list methods.

When I compare Java and VBA, the one thing that strikes me is the lack of standard available classes .

Thinks like LinkedLists, LogManagers, Sorting algorithms and so on :-)

Meh - Maybe its just me

Bob Phillips
10-28-2008, 05:59 AM
Okay, but what lists are you trying to link, just an array, an object array (such as a listbox) or something else again?

Andy Pope
10-28-2008, 06:14 AM
Is this the sort of thing you mean.
http://www.vb-helper.com/tut2.htm

It's VB code but should port to VBA without much if any alteration.