Assign Values to array
Hi,
I wanted to assign constants to an array at once.
Dim KK(1 to 10) as double
KK = ( 1, 2, 3, 4, 5, 6, 7,8,9,0)
Doesnt work...
How can I assign values to the array at once without assigning one by one.
KK(1) = 1
KK(2) = 2
.... etc
Thanks
|