VB Has a linked list facility, It's called a collection. you declare one with
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 useCode:Dim collMyCollection As New Collectionand then you can access it withCode:collMyCollection.Add 10, "MyKey"Code:Msgbox collMycolection.Item("MyKey")




Reply With Quote