VB Has a linked list facility, It's called a collection. you declare one with
Code:
Dim collMyCollection As New Collection
and you can add, remove and read Items using the Add and Remove Methods and the Item Property. You can also Give your items a Key, which is a string to Identify them by use
Code:
collMyCollection.Add 10, "MyKey"
and then you can access it with
Code:
Msgbox collMycolection.Item("MyKey")