Hi,
I am trying to split a single line of data into three separate parts so that they can be displayed in different textboxes. The data looks like this:
item1_item2_item3
The code that I tried is:
Dim arrayLines() As String
Dim record As String
record = Subs.Text
arrayLines = record.Split("_")
TextBox1.Text = arrayLines(0)
TextBox2.Text = arrayLines(1)
I don't seem to have much luck, I don't even get an error message when I click on the button. Any suggestions..?