I have an input file similar to the one below:-
- The first 6 characters (1,6) for all rows would be the same . Following this
- in the first row (7,1 st position) there will be some 1 digit
- in the second row there will be EOL(7,3 rd position), followed by 9 Characters (H6E016094)(10,9 th position)
- in the third row there will be 95 followed by 7 digits (4125159) (9,7 th position)
2188571
218857EOLH6E016094
218857954125159
How do I strip these fields from file and diplay that in a form inside a List Box. Below is how I expect to see the value from the file to be displayed.
Column1 Column2 Column3 Column4
1 EOL H6E016094 954125159
Is using Listbox is the correct approach or how do I go about?