barrykellett
Programmer
Hi, I have the following simple piece of code:
For Each Item In ListBox1.Items
If Item.Selected Then
Stuff = Stuff & "," & Item.Text
End If
Next
This Will create me a String of email addresses seperated by "," however as it is now i get a "," before the first address which i dont want. How can i get round this? I am sure it is very logical but I cant think how!!
Thanks
For Each Item In ListBox1.Items
If Item.Selected Then
Stuff = Stuff & "," & Item.Text
End If
Next
This Will create me a String of email addresses seperated by "," however as it is now i get a "," before the first address which i dont want. How can i get round this? I am sure it is very logical but I cant think how!!
Thanks