I have searched everywhere to find that either it’s discontinued or out of stock. I know that there is 2007 now but I need 2003 (specifically) – ebay doesn’t have it, neither does amazon – any other places? Thanks
I have 2003, but I’m curious why you need this particular version.
When you configure Access you can tell it to open in prior versions. This sometimes don’t require any conversion from your part.
The only problem is when you have used ActiveX Controls that are only available in the newer version. If that is the case you can get the OCX files from the machine you coded the application and register them on the old computer. You do this by looking the broken ("missing") links on the VBA Reference section.
You place the OCX and DLL files on a folder that is for this purpose only. Then you can browse to the directory from the VBA Reference section to fix the broken links. Some DLL’s require registering. There is a command like "regsvr32" that you need to use for this.
Another option is to get the Access Developers Edition and compile the code for a distributable package that can be installed in any computer that needs it. It will contain the Access Run libraries.
If you need more info let me know.