I have a Microsoft Access Database connected to a SQL back-end.
At the moment the Access program checks it's version (saved as const variables) against the latest in a SQL table called Versions, and wont open unless it's the right version. To update it my client has to go to all of the computers it's on and replace the file.
My idea is to have another Access file in the same directory called Updater, that would be opened up by the main file if it isn't the latest version. Updater would close the main program, download the latest version stored in the server, replace the outdated one, open up the main Access file, and close itself.
I can't work out how to actually store an Access .accde in a server however, and how to download it with vba.
Any help appreciated. And I'm open to doing it another way if there's a better one.