I'm currently running into a situation where I have a database that is currently running in production. I'm currently working on updating a part (lets say section A) of it. This update will take me several days to complete and now I have a high priority update that needs to happen. So now I have the production file, the development file that is the same version as the production file, and the new dev file with the changes that I'm working on now. And I need to make some changes quickly that will be put into production before I finish with the previous update. In the past I would just start a new version from the current dev file, make my changes, and then copy those changes into the dev file I was working on. Is there a way to modularize my program (code, forms, queries, reports, etc.) so that I can make changes to one part of the database without affecting another part? For example, if each main form along with all the popup forms and queries needed for it were in its own file, then I could make a change to two parts at the same time without having to copy changes over. Same idea as creating reusable modules so that you only have to write the code once.
How do you all handle these situations?
How do you all handle these situations?
Comment