I get a string from a text file
then I parse it to an array
currently, I have an MsgBox MyString, that displays the contents of the string.
I'd like to instead display that string in a nice column format within a form. I figure I can do it after I split the string into an array.
Thus, when form2 becomes visible, it shows:
array(1) array(2) array(3) array(4)
array(5) array(6) array(7) array(8)
etc.
Problem:
I don't know how many elements will be in the array, once it has been split.
How do I make form2 display the parts of the array in a clean column format?
then I parse it to an array
currently, I have an MsgBox MyString, that displays the contents of the string.
I'd like to instead display that string in a nice column format within a form. I figure I can do it after I split the string into an array.
Thus, when form2 becomes visible, it shows:
array(1) array(2) array(3) array(4)
array(5) array(6) array(7) array(8)
etc.
Problem:
I don't know how many elements will be in the array, once it has been split.
How do I make form2 display the parts of the array in a clean column format?