can anobody tell me whats wrong here...i get a compile error saying something like "only public defined blah blah blah"
what i am trying to do is add the type to the collection.

Private Type NameValue
lsFValue As String
lsRValue As String
End Type
Dim fcNameValue As NameValue
Dim fcCol As Collection
Dim num As Integer

Private Sub Command1_Click()
fcNameValue.lsFValue = "FVAlue"
fcNameValue.lsRValue = "RValue"
fcCol.Add fcNameValue, Str(num)
num = num + 1
End Sub