Hi everybody,
[Access 2003]
I'm creating a database that will assign standards to departments. My plan is to have a form that will allow the user to use 'Next Record' to go to each standard and have a multiple select list box with all of the departments, so the user can select those departments that are responsible for the standards.
I don't have much experience with list boxes, so is it possible to create a form like this? If so, and I think it is, will I have to add code to the list box to update the table based on the selections or is there a way to set up the form to have it automatically update the table? I searched online, but the results were limited and didn't seem to address what I'm trying to do.
Here's my tables (only relevant fields are shown):
There's a one-to-many relationship from tblStandards to tblStandardsDep artment and a one-to-many relationship from tblDepartment to tblStandardsDep artment.
Thanks,
beacon
[Access 2003]
I'm creating a database that will assign standards to departments. My plan is to have a form that will allow the user to use 'Next Record' to go to each standard and have a multiple select list box with all of the departments, so the user can select those departments that are responsible for the standards.
I don't have much experience with list boxes, so is it possible to create a form like this? If so, and I think it is, will I have to add code to the list box to update the table based on the selections or is there a way to set up the form to have it automatically update the table? I searched online, but the results were limited and didn't seem to address what I'm trying to do.
Here's my tables (only relevant fields are shown):
Code:
tblDepartments DepartmentID - Autonumber DepartmentName - Text
Code:
tblStandards StandardsID - Autonumber StandardText - Text
Code:
tblStandardsDepartment StandardsDepartmentID - Autonumber StandardsFK - Number DepartmentsFK - Number
Thanks,
beacon
Comment