I have a database for dispatching trucks. On my form I have a combo box where I select the trucking company and then I have a combo box where I select the trucks that belong to that company. I figured out how to make the truck combo box only show trucks that belong to the specific company, but if I go and change the truck company it still shows me the trucks from the previous company. I need the trucks combo box to update if I change the company. Heres my record source for the trucks combo box.
Select [trucks].[trucknumber] FROM trucks where [truckjobs].[company]=[trucks].[companynumber];
Select [trucks].[trucknumber] FROM trucks where [truckjobs].[company]=[trucks].[companynumber];