Lets say I have 4 text boxes
They read-
Text1.text - John James Doe
I want text2 to read - John
text3 - James
text4 - Doe
Now text1.text may read- Kim Sara Smith
The name was an example. Basically what is the coding for everything to the right of the 1st space, coding for 2nd space to 1st space, and 2nd space to right end?
Dim strTexts() as string
strTexts() = split (text1.text, " ")
text2.text = strTexts(0)
text3.text = strTexts(1)
text4.text = strTexts(2)