Oh, ok. Then when you write the text file, add some delimeter (a
comma, or something; make sure it doesnt appear in any of the words
you want to retrieve from the file). So your file might looks like this:
The,quick,brown,fox,jumps,over,the,lazy,dog
When you read the textfile, read it all in at once, and use the Split
function of the string you read it into, like
Code:
Dim words() As String
Dim fileIn As String
Read your file into the fileIn variable here
words = fileIn.Split(",")
And now you will be left with words(), an array of strings containing
all of the words from your text file. Loop through them and do whatever
you wish with them (adding them to textboxes, I guess).