05-24-2011, 10:40 AM
Try to convert the String with the help of Cstr function.
check if the following code works :
' ------------
'---------
check if the following code works :
' ------------
Code:
converted_nickname=Cstr(nickname)
sp_var=split(converted_nickname, " ")
For i=lbound(sp_var) to ubound(sp_var)
msgbox sp_var(i)
Next
'---------