Here is an example of my code:
Dim items() As String
Dim s As String = nreader.ReadToEnd
items = s.Split(New Char() {"|"c})
Dim anItem As String
For Each anItem In items
Here is where I am having a problem. I want the split information to show in individual text boxes. I don't know how to make this happen. Any clues?
Next
Thanks!
Mindi
Dim items() As String
Dim s As String = nreader.ReadToEnd
items = s.Split(New Char() {"|"c})
Dim anItem As String
For Each anItem In items
Here is where I am having a problem. I want the split information to show in individual text boxes. I don't know how to make this happen. Any clues?
Next
Thanks!
Mindi