I need to Auto Number, Tab, Tab and CR
5 pts.
0
Q:
I need to Auto Number, Tab, Tab and CR
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
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
5 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
Last Answered: May 5 2009  4:22 PM GMT by Flad   5 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



0