F
Finance guy
The code below generates error 3845 as I am using an Access 2003 .MDB file
and the new table gets created in 2007 format. How can I create the table in
2003 format?
I attempted to convert the database to 2007 format but received multiple
errors when using the interface and importing all objects into a new
database.
With CurrentDb
Set tdf = .CreateTableDef(strTBName(i))
tdf.SourceTableName = strTBName(i)
tdf.Connect = ";DATABASE=" & ls_import_filename
.TableDefs.Append tdf 'ERROR
.Close
End With
and the new table gets created in 2007 format. How can I create the table in
2003 format?
I attempted to convert the database to 2007 format but received multiple
errors when using the interface and importing all objects into a new
database.
With CurrentDb
Set tdf = .CreateTableDef(strTBName(i))
tdf.SourceTableName = strTBName(i)
tdf.Connect = ";DATABASE=" & ls_import_filename
.TableDefs.Append tdf 'ERROR
.Close
End With