Hi everybody
I’m storing concatenated string into string var myVar to match the coding syntax of a array
then putting this var myVar in my declaration of array to convert all string in a array of string
Dim witdhz() As string
witdhz = Array(myVar)
In the debuger i can see my array contain only one entry
“8.5”,“8.5”,“3.5”,“8.5”,“8.5”
even so i have the right syntax ( double quote…data…double quote…comma
what i’m missing
Thanks