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