It’s been a long time since I’ve written a program in VB.NET, but now I’m trying to write a WinForm application. I have several strings and I want to put them together so that they can added to a ListView control.
I have this:
text1 = ("00 | 34123 | 232")
text2 = ("023 | 233 | 23332 ")
text2 = ("00 | 2342432 | 122 ")
But I want this:
text1 = ("00 | 34123 | 232 ")
text2 = ("023 | 233 | 23332 ")
text2 = ("00 | 2342432 | 122 ")
Note that each number is a string variable, so that each number can be: “12” or “123” or “1234”… How I can do that!?
1 Answer