Não entendi muito bem oq vc quer mas vamos lá.......bom vc pode usar uma rotina simples assim...
Private Sub lst1_Click()
If txttexto <> "" Then
txttexto = txttexto & " " & lst1.Text
txttexto.SelStart = Len(txttexto.Text)
txttexto.SetFocus
Else
txttexto = txttexto & lst1.Text
txttexto.SelStart = Len(txttexto.Text)
txttexto.SetFocus
End If
End Sub
Sendo que:
Text1 = txttexto
List1 = lst1