VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



This uses a recrusive function to copy lists, This is great for people who often use timers to do t

by Steven Bailey (10 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 4.0 (32-bit)
Difficulty: Unknown Difficulty
Originally Published: Tue 18th April 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

This uses a recrusive function to copy lists, This is great for people who often use timers to do the same job mutch slower.

Rate This uses a recrusive function to copy lists, This is great for people who often use timers to do t



'example: copylist myist1, mylist2
On Error GoTo Err
Dim i As Integer
For i = 0 To List1.ListCount
List1.ListIndex = i
List2.AddItem List1.Text, i
Next i
Err:
End Function



Download this snippet    Add to My Saved Code

This uses a recrusive function to copy lists, This is great for people who often use timers to do t Comments

No comments have been posted about This uses a recrusive function to copy lists, This is great for people who often use timers to do t. Why not be the first to post a comment about This uses a recrusive function to copy lists, This is great for people who often use timers to do t.

Post your comment

Subject:
Message:
0/1000 characters