HOW DOES ONE CREATE A LINK LIST IN VB(IF POSSIBLE GIVE THE CODE ALSO)
Printable View
HOW DOES ONE CREATE A LINK LIST IN VB(IF POSSIBLE GIVE THE CODE ALSO)
Use a collection object.
Dim m_col as Collection
set m_col = new Collection
m_col.Add(AnyObjectHere)
You can traverse this collection using index values or For Each...Next syntax.