Convert from Acess 2003 to 2007

P

Paul

Our office is converting from Office 2003 to Office 2007 the middle of Feb
2010. I am currently the administrator (additional duty) on an Access 2003
front end - back end system with an updater_launcher. Our database uses the
full range of objects: tables, queries, forms, reports, macros, and modules.
Microsoft makes it sound easy to convert a database to Access 2007 format
(see their link at
http://office.microsoft.com/en-us/access/HA100484061033.aspx). Is it really
as simple as they make it appear, or should I expect problems by using their
approach? Any advise would be greatly appreciated. Thanks.
 
J

Jerry Whittle

Don't do it. You can still use the 2003 mdb/mde database format with Access
2007.

Do you use user-level security? If you convert to the new 2007 accdb format,
you won't. It doesn't support it. So if you need user-level security, you
must stay with the Access 2003 file format.
 
T

Tom Wickerath

Hi Paul,
Is it really as simple as they make it appear...

Sometimes it is, and sometimes it is not. My advice is to first verify that
your database does not have extra checked references that are not needed, and
that any VBA code compiles without errors.

I often times see databases that have a bunch of unnecessary references
checked. Make a backup copy of your database. Compile your VBA code first, to
ensure that you do not have any lingering compile-time errors. Then make a
note of your current checked references, and then start eliminating any
questionable references one-by-one, doing a compile after removing each one.
If your code continues to compile without an error after removing a checked
reference, then you did not need that checked reference. It is best to always
"starve" the references listing, so that you are not wasting RAM memory by
loading libraries that are not used. There is one reference that I have seen
checked--I'm thinking it is called Utility.mda, but I'm a bit foggy on that
memory--that is no longer supported in A2007. So, if your 2003 project
happens to include a reference to this particular library, you might
experience trouble on that one.


Tom Wickerath
Microsoft Access MVP
http://www.accessmvp.com/TWickerath/
__________________________________________
 
P

Paul

Yes. Our system has user-level security. Do you know of any problems
running A2003 from A2007?
 
J

Jerry Whittle

I haven't noticed any. However you want to test, test, and test some more to
make sure that there aren't any problems.
 

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