I want to make a collection to have data available Example:
Dim b As New Collection
colb = New Collection
b.Add("system", "1001", "SYSTEM")
b.Add("network", "1002", "NETWORKA")
b.Add("networksecond", "1010", "NETWORKB")
colb.Add(b, "list")
im looking for a function to get data from this collection: I want to, based on the ID (Second number) get the first and third value So if I search for 1010, I need to have the value Network and NETWORKA