I'm not sure what you are trying to do, but this line of code will copy the selected entry in List1 and the selected entry in List2.

If List1 had "First" highlighted and List2 had "Name" highlighted, then the clipboard will contain "First Name".

Code:
Clipboard.Set TextList1.List(List1.ListIndex) & " " & List2.List(List2.ListIndex)
If you need more help, let me know...