S
sqlnewbie09
Need help fast!!
Have a form form for a student's weekly calendar schedule. Monday to Friday
with 10 class periods each.
Originally have 50 comboboxes to complete 1 student schedule for the whole
week.
This tremendously slows down my form.
Instead I converted it to 50 textbox controls. When a user clicks it, a
popup form will appear with 2 unbound comboboxes. First combo is for the days
of the week
and second contains the available courses (courseid, course_description)
entered to another form.
On the afterupdate event of the 2nd combobox:
I have a code to populate the textbox with the course_id which is bound to
TblSchedule. No problem here.
However data entry staff would like to see the course description and I need
it on a report as well instead of the course id.
How can I display the course description? For now, I have 2 textboxes for
each class period, 1 bound and another unbound with a Dlookup function. But
it will also defeat the purpose of making my forms faster. Also the popup
form will be used for all the 50 textboxes. What would be the best approach
to this dilemma??
TIA,
sqlnewbie09
Have a form form for a student's weekly calendar schedule. Monday to Friday
with 10 class periods each.
Originally have 50 comboboxes to complete 1 student schedule for the whole
week.
This tremendously slows down my form.
Instead I converted it to 50 textbox controls. When a user clicks it, a
popup form will appear with 2 unbound comboboxes. First combo is for the days
of the week
and second contains the available courses (courseid, course_description)
entered to another form.
On the afterupdate event of the 2nd combobox:
I have a code to populate the textbox with the course_id which is bound to
TblSchedule. No problem here.
However data entry staff would like to see the course description and I need
it on a report as well instead of the course id.
How can I display the course description? For now, I have 2 textboxes for
each class period, 1 bound and another unbound with a Dlookup function. But
it will also defeat the purpose of making my forms faster. Also the popup
form will be used for all the 50 textboxes. What would be the best approach
to this dilemma??
TIA,
sqlnewbie09