H
HardySpicer
I have a list of commands in an array command_string() that I want to
display in a textbox.
I can get them all in one column easily enough like this
For i = 0 To command_string.Length - 1
TextBox1.Text += command_string(i) & vbCrLf
Next
But I want them in two or more collumns. How do I do this? Also, the
text when it appears in a column is "selected" text for some reason
(like in a word processor). Why is this?
Hardy
display in a textbox.
I can get them all in one column easily enough like this
For i = 0 To command_string.Length - 1
TextBox1.Text += command_string(i) & vbCrLf
Next
But I want them in two or more collumns. How do I do this? Also, the
text when it appears in a column is "selected" text for some reason
(like in a word processor). Why is this?
Hardy