Custom functions to create a progress bar in Microsoft Access to use on forms.
For the purposes of these instructions, assume your database is called C:\Temp\myDb.accdb
.
- Load
clsProgressBar.cls
into a new module in your database with that exact name. - Go to the VBA editor (CTRL-G) and select "File" > "Import File..." (or you can just drag and drop the file from windows explorer into the vba editor module list).
- Select the
clsProgressBar.cls
file. - Save the file (CTRL-S).
Original functions were created by Adam Waller (https://stackoverflow.com/users/4121863/adamstips). You can find his original code at https://stackoverflow.com/questions/11956834/progress-bar-in-in-ms-access. Pull requests, issue reports, etc welcomed.