CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: GENERAL

  1. #1
    Join Date
    Feb 2000
    Posts
    2

    GENERAL

    HOW DOES ONE CREATE A LINK LIST IN VB(IF POSSIBLE GIVE THE CODE ALSO)


  2. #2
    Join Date
    Feb 2000
    Location
    Indiana
    Posts
    308

    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
  •  





Click Here to Expand Forum to Full Width

Featured