Sorry if this is a repeat - I looked for similar threads and haven't found any that match. Also, not sure which is the best forum since this involves queries, forms and some limited programming. I'm fairly new to Access, not a lot of experience with code but willing to learn.
I'm building a (simple) database to keep track of training materials and any maintenance information related to them - our spreadsheets were not quite adequate for the purpose. We have a number of different training items (in an Items table). They may be part of any one of several projects based on role or application (listed in the Projects table and linked to the Items table).
There are currently 2 forms for the end users, SearchItems (to locate the desired training item) and Item Details (to input/edit maintenance info on a training item). It took a while to get the SearchItems form working. It has 2 combo boxes, pulling from the Projects table and the Items table. Both use embedded queries for row source. The user selects the desired project and then selects the desired item. The query for the Items combo box filters results based on the project selected in the Project combo box. There are 2 buttons, one to clear the form and one to open the selected item (it opens the desired record from the Item Details form).
All this was (finally!) working together beautifully. I made a copy database which allows me to make changes without impacting the original. A Navigation form was added (intended to be the main UI for end users), and the Search Items was added to that. The SearchItems form continued to work on its own but not when opened from the Navigation form. Next step was to remove the Navigation form from the copy database. SearchItems form continued to work. I tried adding a new button to the bottom of the form that would allow for a different form to be opened. On adding this new button, without changing properties on the original 2 combo boxes and 2 buttons. the functionality that existed between those several objects was broken. Now when the Items combo box is selected, the form asks for the parameter that should be given by the Projects combo box.
I tried deleting all objects on the SearchItems form and building them again - didn't work.
I even made another copy of the database from the (still working) original and that broke also (when I enabled content).
I'm hoping someone else has seen something similar and can tell me what I'm doing wrong...
Thanks for your help!