Compile Access db or project file through VBA

lockheedcrow

Systems Engineer
Local time
Yesterday, 21:40
Joined
Apr 12, 2006
Messages
6
I am building a deployment module for my Access databases and projects. I would like to deploy compiled files. Does anyone know how to compile a MS Access database or MS Access project file through VBA code?

Thanks.
 
DoCmd.RunCommand acCmdCompileAndSaveAllModules
- also -
acCmdCompileLoadedModules
acCmdCompileAllModules
 
I will give it a try - thanks!
 
Not quite what I wanted, but getting there ...

I think what I want is:

DoCmd.RunCommand acCmdMakeMDEFile

I don't see an analog for compiling an Access project file, which is
one of the main things I am trying to do. :(
 

Users who are viewing this thread

Back
Top Bottom