I am working on an election results page, and I am trying to figure out a way to make the text object use the Return or Enter key to make a new line when it reaches the space between a person's first name and last name.
IE:
Chuck
Lohf
Using Word Wrap is inconsistent for this purpose.
Is there a way to do this with code? Basically I want to tell the code to hit Return or Enter when it occurs a " " in a string of text. I've been able to do it with:
if Str1.Contains("_")then chr(13)
but that only tells it to Return at the end of the text string.
Any ideas?
Chuck