I have a cell that includes the following information. name[tall] name[short] name[medium] name[tall] name[short]
What I need this information to do is, add an ascending number before each name, tab, name, tab, size then carriage return.
What I have so far is...
Dim fullname As String
fullname = input_name.Value
Dim withtabs As String = Replace(fullname, "[" , VbTab)
Dim vbnewline As String = Replace(withtabs, ">" , VbCrLf)
track_box.Contents.Text = vbnewline,
How can I accomplish?
Software/Hardware used:
ASKED:
May 5, 2009 4:22 PM
UPDATED:
May 5, 2009 5:08 PM