If I do this:
$string=("AB@CD=,123") msgbox (0,"",$string)
It will result-->AB@CD=,123
But what 2 do if I want to result AB@CD=,"123","456",7 ?
I have found that there is a way using "&"
e.g.
$string=("AB@CD=,""" & "123" & """," & """" & "456" & """," & 7) msgbox (0,"",$string)
Is there an other way? Can't I do:
$string=(AB@CD=,"123","456",7) msgbox (0,"",$string)
Thanks-




