I offered to help a friend out with a small database that is meant to track lunch orders for their small private school. It is so simple, I didn't even give any thought to it. It is just 2 tables, one for students, and one for lunch orders. All we are tracking is whether or not a student ordered lunch on a given date.
TABLES:
student: autonumber, first, last, grade
lunch: studentid, date, order(y/n field)
Of course, I have the tables put together. That took all of 10 minutes. Now I want to make a data entry/display form, and that is proving to be a challenge. I want to make a list of all the students, and then have 1 week at a time displayed like this:
Code:
Student Mon Tue Wed Thur Fri (April 26-30)
Joe x x x
Sue x x x
Tommy x
Angie x x
and so on.
I was going to do it with a sub-form. That won't work because you can't have have continuous view set on a form with subforms. If I try and just have unbound check boxes and use
VB to set the values, all checkboxes in that column take on the same value in continuous form view.
I've tried 3-4 permutations, and now feel a bit humbled because I thought I could bang this out in an hour. Does anyone have any suggestions on how I can make a form like this?
Thanks for any input,
Quint