How can I create MsAccess .adp file programmatically
B Brendan Reynolds May 28, 2007 #2 Anshul said: How can I create MsAccess .adp file programmatically Click to expand... Use the CreateAccessProject command of the Access Application object. Here's an example ... Public Sub CreateAdp() Application.CreateAccessProject CurrentProject.Path & "\MyNewAdp.adp" End Sub Also see the following on-line help topic ... http://office.microsoft.com/client/...CESS.DEV&lcid=2057&QueryID=9tVBkOrni&respos=1
Anshul said: How can I create MsAccess .adp file programmatically Click to expand... Use the CreateAccessProject command of the Access Application object. Here's an example ... Public Sub CreateAdp() Application.CreateAccessProject CurrentProject.Path & "\MyNewAdp.adp" End Sub Also see the following on-line help topic ... http://office.microsoft.com/client/...CESS.DEV&lcid=2057&QueryID=9tVBkOrni&respos=1