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?
ASKED:
May 5 2009 4:22 PM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _