VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Copy all Data from List1 to List2 (works for copying File1.Path to List1)

by Mike (7 Submissions)
Category: Miscellaneous
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Mon 9th April 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Copy all Data from List1 to List2 (works for copying File1.Path to List1)

Rate Copy all Data from List1 to List2 (works for copying File1.Path to List1)



'///Make All Data in List1 to List2'///
 Dim iCounter as Integer
For iCounter = 0 to List1.ListCount
 List2.Additem (List1.List(iCounter))
Next iCounter
'----------------------------------
'///For Putting everything in File1.Path into List1///'
 Dim iCounter as Integer
For iCounter = 0 to File1.ListCount
 List1.Additem(File1.List(iCounter))
Next iCounter

Download this snippet    Add to My Saved Code

Copy all Data from List1 to List2 (works for copying File1.Path to List1) Comments

No comments have been posted about Copy all Data from List1 to List2 (works for copying File1.Path to List1). Why not be the first to post a comment about Copy all Data from List1 to List2 (works for copying File1.Path to List1).

Post your comment

Subject:
Message:
0/1000 characters