codice:
for i = 0 to Ubound(arrUtenti)-1
if utenti = "" then
utenti = arrUtenti(i) & ", "
else
utenti = utenti & arrUtenti(i) & ", "
end if
Next
Alla fine avrai comunque una virgola di troppo...

Roby