|
-
February 16th, 2000, 12:02 PM
#1
GENERAL
HOW DOES ONE CREATE A LINK LIST IN VB(IF POSSIBLE GIVE THE CODE ALSO)
-
February 16th, 2000, 12:06 PM
#2
Re: GENERAL
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|