All right, let's see if I can explain this.
I want to have a form contain three things:
1. an activex calendar which does nothing (except provide a calendar)
2. a combo box which lists employee names and feeds the selected name to a query which returns dates for that name.
3. a list box which gets data from the above query and displays it.
I know how to do 1 and 2. no idea how to get 3 to work...
to rephrase: i have a table called timesheets. I want to know in which days employees have not filled a timesheet. Seeing as how I can't figure out how to do that I decided to show them the dates they have filled in and a calendar side by side, asking them to be clever enough to figure out where data is missing. the way i want to do this is in a form, to select employee name from a combo box (populated by the employees table) and have that entered into the query as a filter to all timesheet dates. those dates remaining (which match the employee id) should be displayed in a list box in the same form AND be updated at the same time as the combo box.
any ideas?
Thanks in advance :)
I want to have a form contain three things:
1. an activex calendar which does nothing (except provide a calendar)
2. a combo box which lists employee names and feeds the selected name to a query which returns dates for that name.
3. a list box which gets data from the above query and displays it.
I know how to do 1 and 2. no idea how to get 3 to work...
to rephrase: i have a table called timesheets. I want to know in which days employees have not filled a timesheet. Seeing as how I can't figure out how to do that I decided to show them the dates they have filled in and a calendar side by side, asking them to be clever enough to figure out where data is missing. the way i want to do this is in a form, to select employee name from a combo box (populated by the employees table) and have that entered into the query as a filter to all timesheet dates. those dates remaining (which match the employee id) should be displayed in a list box in the same form AND be updated at the same time as the combo box.
any ideas?
Thanks in advance :)
Comment