A
André
Hi,
I have a two-dimension array with integers and i want to join it into a
string. See my code:
dim va(10,5) as integer
dim mystring as string
....
for j=1 to 10
for k=1 to 5
mystring = Join(";",va(j,k).ToString)
next
next
The error i get is: "value of type string cannot be converted to
1-dimensional array of string"
Thanks for help
André
I have a two-dimension array with integers and i want to join it into a
string. See my code:
dim va(10,5) as integer
dim mystring as string
....
for j=1 to 10
for k=1 to 5
mystring = Join(";",va(j,k).ToString)
next
next
The error i get is: "value of type string cannot be converted to
1-dimensional array of string"
Thanks for help
André