Results 1 to 6 of 6

Thread: Save Multiple Lists [RESOLVED]

Threaded View

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2005
    Posts
    300

    Save Multiple Lists [RESOLVED]

    ok i have a number of lists on my form and i only wana have one save button that will save all the lists in the same text file.

    VB Code:
    1. Dim x As Integer
    2. For x = 0 To List1.ListCount - 1
    3.   Open "C:/List.txt" For Append As #1
    4.     Print #1, List1.List(x)
    5.   Close #1
    6. Next x

    i have this which is ok but im not sure how to make it for all my lists. I have 7 lists all together. Any help welcomed. Thank you.
    Last edited by Ricky1; Mar 9th, 2005 at 06:59 PM.
    Im Learning !!!!

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