Link to home
Start Free TrialLog in
Avatar of SweetLeaf
SweetLeaf

asked on

Moving C++ app from Winnt to Windows 95

I have a problem with an application that I developed when I move it from a Winnt computer to a Windows 95 computer.  The application creates a database and saves a variety of data.  On the Windows 95 computer, the database creation fails.  When I install the VC60 dev studio on the Win95 computer, the problem goes away.  I need to know what files to distrubute with the application for a Win95 OS.  Maybe there is some build setting to allow the app to work on a Win95 computer?

Thanks
Avatar of Iexpert
Iexpert

You need the ADO 2.1 install I think?
Avatar of SweetLeaf

ASKER

Where can I find ADO 2.1?
ASKER CERTIFIED SOLUTION
Avatar of Tommy Hui
Tommy Hui

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jkr
As you're using VC++, the easiest way to find out what DLL is missing would be using 'dumpbin /imports <your app>' at the command line or the Dependancy walker shipped with VC++..
I used the dlllook.exe to determine which dlls were not loading properly.  As I suspected several of the jet database dlls were not loading.  I ran mdac_typ.exe to load the ado 2.1.  I also had to upgrade the system with crystal reports 6.0 dlls.

Thanks for your help