Hi
I have a lstdata3 with 4 emails in it
and I will that thoose shall come up in
a textbox seperated with ; at the end of each.
the lstdata3 list is with the checkbox enabled
so I can choose wich I will use.
a commandbutton is used to execute the command
LstData3.Selected = True
For i = 0 To LstData3.ListCount - 1
Form1.textTo = LstData3.Selected(i) + ";"
Next i
Bonzo