Well I have finally got my collection key loading into my list box. Now on my click event I want to target my key, which is in the list box and display the member in a text box. Here is what I have tried and getting error"Object required":
Private Sub lstTerms_Click()
Dim myKey As String
Dim DefFound As String

myKey = lstTerms
Set DefFound = mcollTerms.Item(myKey)'(error here)
txtDefine.Text = DefFound

End Sub
Kelly