Click to See Complete Forum and Search --> : GENERAL


G_GIRISH
February 16th, 2000, 11:02 AM
HOW DOES ONE CREATE A LINK LIST IN VB(IF POSSIBLE GIVE THE CODE ALSO)

Kyle Burns
February 16th, 2000, 11:06 AM
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.