I have 2 tables. The 1st one is tblRooms. It contains a list of all the rooms available to projects. tblRooms contains just 2 fields:
So a user could select a project from the combobox and see all the rooms available for the project. The could then check the boxes for the ones they wanted included, or uncheck to remove it.
I can't figure out how to get the check box capability and have all the rooms available in the form.
Is this hard, easy.. or should I be trying another approach (I have thought about having 2 listboxes and adding from the tblRoom listbox to the tblProjectRoom listbox, but liked this approach better)
- RoomId (key)
- RoomName
- ProjectRoomID (key)
- ProjectID
- RoomID
- RoomSortOrder
So a user could select a project from the combobox and see all the rooms available for the project. The could then check the boxes for the ones they wanted included, or uncheck to remove it.
I can't figure out how to get the check box capability and have all the rooms available in the form.
Is this hard, easy.. or should I be trying another approach (I have thought about having 2 listboxes and adding from the tblRoom listbox to the tblProjectRoom listbox, but liked this approach better)