I have a database that will deal with all aspects of a project. That's great. But currently when I want to use it on other projects or make a new project, I have to make a new front end that is specifically for that project.
What I'm doing now (working progress/subject to change) is having the user select the project on the main menu. This information will then be kept on an invisible text box on the background form.
Then, Any main form that opens from the menu will use this information in the query and only open information relating to that project. That's the best way I can think of for doing this. Any suggestions appreciated.
So, assuming that solution is the one I go with (its the one I'm working on). I'm having a few problems. This is code associated to the change event of the combo box on the main menu.
Code:Private Sub project_Combo_Change() DoCmd.Requery "project_combo" Forms![background form]![Project_ID].Requery ' <- error occurs on this line End Sub
I cant get either of these lines to update what's on the background form, the error I'm getting is: 438 : object doesn't support this property or method
I've had a look online and I'm confused as to what's causing it to be honest.