|
-
Jul 7th, 2000, 03:27 AM
#1
Thread Starter
Junior Member
Hi All,
Does anyone know an easy way to merge two collections in vb.
i tried the following code
Private Sub cmdMerge_Click()
Private col1 As New Collection
Private col2 As New Collection
Private col3 As New Collection
col1.Add "1", "1"
col2.Add "2", "2"
col3 = col1 + col2
End Sub
and it flopped!
Any suggestions pl? Thanx in advance
okdk
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|