How would one go about putting the characters of a sting into the index of an array?
eg.
For i = 1 To 8
array(i) = "abcdefgh"
Next
I want array(1) to be a , array(2) to be b and so on.
Thanks