Sorry to be a pest with "newbie" questions on this forum. I am working my way through a course on this as time permits but have an immediate short term need to help someone with a (hopefully) simple application.
I have done it before In ACCESS and it works fine.
I am wondering if I break it down to very minor steps it might be easier. Here goes...
The first thing I need to do is click a button to import data from a text file that looks like this -
[Blue]CUSTNO,REQ,ORDER,STORE,SEQ,PRODNO,QTY
9313938000501,14319,9005785,1002,6,SGCLMINI,3
9313938000501,14319,9005785,1002,1,SNMATCH3,3
9313938000501,14319,9005785,1002,5,SABTARU04,6
9313938000501,14319,9005785,1006,1,SUCROSS4,24
9313938000501,14320,9005786,1001,2,SUCROSS4,24
9313938000501,14320,9005786,1001,1,SUWALL5,6
9313938000501,14320,9005786,1005,1,RSB05LUCKY,2
9313938000501,14320,9005786,1009,2,SUCROSS4,24
9313938000501,14320,9005786,1014,1,SUWALL5,6
9313938000501,14320,9005786,1016,1,RSB05TERM,2
9313938000501,14320,9005786,1018,1,RSB05TERM,2
9313938000501,14321,9005787,1013,2,SUCROSS4,24
9313938000501,14321,9005787,1013,4,SGCLJUNIOR,3
9313938000501,14321,9005787,1013,5,SADAPUMP1205,12
9313938000501,14321,9005787,1017,1,SUWALL5,6
9313938000501,14321,9005787,1017,4,SGCLJUNIOR,3
9313938000501,14321,9005787,1025,4,SUMASC03,3
9313938000501,14321,9005787,1027,2,SUCROSS4,24
9313938000501,14321,9005787,1027,6,SGCLMINI,3[/BLUE]
I can ignore the third column "ORDER". The real file has many more fields, most of which are irrelevant, and many more records. But this is the guts of it.
I assume from the response by
infinitelo above that I should finish up with a DataTable from which I can read the data for subsequent merging/manipulation.
In the data setion of the VB.Net toolbox I note that there is a DataSet and a DataView but nothing about DataTable.
At this stage I am hoping to start a new blank project that will simply import the data above in a way that I can see it, and subsequently use it. Hopefully, once I have that right I can progress from there and learn on the way.
Any help on this will be greatly appreicated.