I'm very new to VB.NET so basic stuff please. What I'm trying to do is this - I have a flat file of about 100,000 records. I want to display those records on a form depending on certain user selections. I don't like data grids. User may select one of five different combo boxes, and the rest of the data for that record must be displayed in various text boxes. This is all very simple in good old Sunbelt PLB.
What I've tried so far is to create an Access database, and then use OleDbDataAdapte r, OleDataConnecti on and the SQL thingy to do a .Clear and then a .Fill into my form. It takes for ever, so I'm sure this is not a good option, but the first record displays and is sorted on the first of my combo boxes. (How do I get the other combo boxes sorted in their order as well?). If I then change the value of the first combo box, the other combo boxes change to the correct record, but nothing happens to the text boxes. I obviously can't do a .Fill every time because of the number of records.
Has anybody got any ideas for a real novice?
What I've tried so far is to create an Access database, and then use OleDbDataAdapte r, OleDataConnecti on and the SQL thingy to do a .Clear and then a .Fill into my form. It takes for ever, so I'm sure this is not a good option, but the first record displays and is sorted on the first of my combo boxes. (How do I get the other combo boxes sorted in their order as well?). If I then change the value of the first combo box, the other combo boxes change to the correct record, but nothing happens to the text boxes. I obviously can't do a .Fill every time because of the number of records.
Has anybody got any ideas for a real novice?
Comment