Converting MS Access 2002 to 2.0

B

Breunig

I am currently using Access 2.0 (yes, I know it's old!).
I have a file in 2002 that I would like to be able to use
in 2.0. Is it possible to save the database in a way to
that I can use it in 2.0?
 
D

Douglas J. Steele

If all you want is the data, you should be able to create a blank database
in Access 2.0, and export your tables from your newer application to that
blank database.

If you want the forms, reports, etc., I don't believe there's any way.
 
D

david epsom dot com dot au

If you want the forms, reports, etc., I don't believe there's any way.

Using SaveAsText/LoadFromText. The conversion is not clean: you will
probably have to modify the text just to get it to load. After loading,
VBA will need a lot of work. Works OK for macros and queries though.

(david)
 
C

Chris Mills

This still seems to work, only for tables & queries though.
Set MyDB = MyWS.CreateDatabase(strDBName, dbLangGeneral, dbVersion20)
DoCmd.TransferDatabase acExport, "Microsoft Access", strDBName, acTable,
"Source", "Destination", False

(don't be confused by the Help mentioning other object types!)
Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top