-
Notifications
You must be signed in to change notification settings - Fork 40
Quick Start
This add-in performs two primary functions to support rapid application development in Microsoft Access.
- Export - Generate text-based source files representing the database components of your project. (table structure, queries, forms, etc...)
- Build - Build a fully functional version of your database project directly from source files. You can also merge updated source files into an existing project.
- Download the latest release from GitHub.
- Extract and open
Version Control.accda
from the zip archive. - Click Install Add-In.
After installing the add-in, you should see a new ribbon toolbar in Microsoft Access. Open your database project, then click Export on the ribbon.
This will launch the add-in and export your project to source files. (By default, in a subfolder under your database project.)
Subsequent exports will be much faster because they will only export changed items.
At this point you can switch over to your version control system (I like GitHub Desktop) and commit the source changes to version control.
At some point you will probably want to build your project from source, perhaps pulling in source changes from other developers. With your project open, simply click Build From Source on the ribbon.
After clicking to confirm the build from source, the add-in will save your current database as a backup, and build a fresh copy from source files.
All set! Your freshly built database is ready to use and continue development. (Note that the first export after a build will be a full export.)
Feel free to check out other wiki pages to learn about additional options, merge builds, FAQs, and more.
Enjoy!!