N
NevilleT
I want to import data from MS Project into an Access application. I thought
I could programatically save the project file as an mdb file from Access then
import the table I need into my Access database using transferdatabase. So
far I have been unable to save the project file as an Access database from
Access. Has anyone done this before? I keep getting an error. I can
connect to project, and read data using an SQL but cannot save the Project
file as an mdb.
The code is
Dim strTempDB As String
strTempDB = "C:\temp\temp.mdb"
FileSaveAs Name:=strTempDB, FormatID:="MSProject.MDB8"
I want to avoid writing an SQL query to transfer around 90 fields from one
table and another 30 from a second table.
I could programatically save the project file as an mdb file from Access then
import the table I need into my Access database using transferdatabase. So
far I have been unable to save the project file as an Access database from
Access. Has anyone done this before? I keep getting an error. I can
connect to project, and read data using an SQL but cannot save the Project
file as an mdb.
The code is
Dim strTempDB As String
strTempDB = "C:\temp\temp.mdb"
FileSaveAs Name:=strTempDB, FormatID:="MSProject.MDB8"
I want to avoid writing an SQL query to transfer around 90 fields from one
table and another 30 from a second table.