twoplustwo
Registered User.
- Local time
- Today, 14:59
- Joined
- Oct 31, 2007
- Messages
- 507
Hey guys,
I think I've seen a solution to this here before but I can't really word my problem into a search criteria!
I basically group some sites in a module into one string. I separate these with commas presently but I can't figure out how to stop before the last entry.
Bolded is the line I need to edit I guess.
Please to be suggesting how to go about it
Thanks.
Steve.
I think I've seen a solution to this here before but I can't really word my problem into a search criteria!
I basically group some sites in a module into one string. I separate these with commas presently but I can't figure out how to stop before the last entry.
Code:
For x = 0 To lstSite.ListCount - 1 'Select sites
If lstSite.Selected(x) = True Then
[b] strSite = strSite & lstSite.Column(2, x) & ", "[/b]
End If
Next
Bolded is the line I need to edit I guess.
Please to be suggesting how to go about it

Thanks.
Steve.