I have a database my office uses to track cases. I had it opening to a Navigation Form, which had 3 other forms on it (CROLOG Input, CDI Input, and Reports.) My new boss wanted the input forms filtered to show only open cases. As the Navigation Form is not linked to a table or query, the filter could not be applied to that form. So, I filtered the input forms directly, and built a macro to open all three forms when the database is opened.
My problem is I want the form tabs to appear in the order above (CROLOG first, CDI second, and Reports third, as that is how the office has been viewing the DB since inception), and have the CROLOG Input form the one that is initially visible. In the macro, if I put the OpenForm commands in that order, the Reports form is the one visible. Is there a command I can add after DoCmd.OpenForm "Reports" that will then "click" back to the CROLOG Input form? (I’m just trying to make this update as seamless for the office as possible.)