OK here is the situation. I am working on a program
where I pull a word from a .txt file, (for this question, let's say the word is "TABLE". I want my prog to seperate each individual letters..T A B L E... and set them into a string array.

Like this...

dim strName(4) as string.
therefore the word table would kick out...

strName(0) = T
strName(1) = A
strName(2) = B
strName(3) = L
strName(4) = E

Now I think I use the Split function, however...I have no clue of the syntax for this...HELP!
Thanks!
Lee