Lightseeker
Programmer
I've got a database that has one table for students and each class the students take. There are 44 classes that the students take, each having a grade, status, and comments. I use an mshflexgrid to edit just the grades, status and comments. The course names and numbers are static so they're hard coded.
If I use an array of textboxes (to simulate a grid) with their datafields set, the database can contain lots of grades, status, and comments entries. But if I use the flexgrid, then read the entries into an array or collection, I get "error: record too large" on the update process. The textbox array is too slow and the flexgrid causes the error...?
The project uses DAO and it's not a school project, just one I wrote for one of my instructors so he could keep track of his students rather than keeping track of them on paper. He has the textbox array working copy but I wanted to give him the ability to use the grid.
Does anyone know a way to stop this from happening??
Lightseeker
If I use an array of textboxes (to simulate a grid) with their datafields set, the database can contain lots of grades, status, and comments entries. But if I use the flexgrid, then read the entries into an array or collection, I get "error: record too large" on the update process. The textbox array is too slow and the flexgrid causes the error...?
The project uses DAO and it's not a school project, just one I wrote for one of my instructors so he could keep track of his students rather than keeping track of them on paper. He has the textbox array working copy but I wanted to give him the ability to use the grid.
Does anyone know a way to stop this from happening??
Lightseeker