Ordered List in a Textbox
It's the AppendText that does the trick.Nice when it works, Nice when you understand why.
View ArticleOrdered List in a Textbox
For i = 1 To 50 TextBox1.Text = (i.ToString & ") " & (arrNumber(i))) & vbCrLf & TextBox1.Text ListBox1.Items.insert(i-1,(i.ToString & ") " &...
View ArticleOrdered List in a Textbox
TextBox1.AppendText((i.ToString & ") "& (arrNumber(i))) & vbCrLf)
View ArticleOrdered List in a Textbox
Thanks Renee,But that doesn't work the numbers still appear as,50)13249)2648 56etc,
View ArticleOrdered List in a Textbox
Dim Count as Integer = 1For i = 50 To 1 Step -1 TextBox1.Text = (count.ToString & ") " & (arrNumber(count))) & vbCrLf & TextBox1.Text...
View ArticleOrdered List in a Textbox
Below is the code to place 50 items in a Textbox/Listbox in the Listbox the items show 1 - 50 but in the Textbox they show 50 - 1 I know why it's doing this but how do I reverse it to show 1 - 50 same...
View Article