Please help me, I'm not really good in programming.
I've done converting text file going to excel, and excel going to DataGridView.
Here's my problem:
I want to get the specific one or two numbers (maybe up to three).
example:
98321 12345 67890 54321 09876 'this numbers in excel. (First row)
89123 51234 06789 15432 60987 '(Second row)
I want to get "98" in that first column going to DataGridView in 1 cell;
and "321" in the 2nd cell. Then skip to second column which is "67890";
same: I want to get "6" to 3rd cell then "789" in 4th cell.
Then the second row will follow what happen in first row.
I really don't know if VB.Net can do this alone or need C# to this problem.
-Zelrick-