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:
Dim x As Integer For x = 0 To List1.ListCount - 1 Open "C:/List.txt" For Append As #1 Print #1, List1.List(x) Close #1 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.




Reply With Quote