msado15.dll and ADO using

  • Thread starter Thread starter Sir
  • Start date Start date
S

Sir

I'm using ADO in VC++6
#import "C:\Program Files\Common Files\System\ado\msado15.dll" \
rename( "EOF", "adoEOF" )
and so on.
Everything is normal.
But when I take release .exe from the computer with VS6 (WXPSP2)
and put it on the computer with only OS WXPSP2 it does not
work.
There is the msado15.dll in the same folder and registered.
What should I else add to the .exe file to force it work ?
 
Sir said:
I'm using ADO in VC++6
#import "C:\Program Files\Common Files\System\ado\msado15.dll" \
rename( "EOF", "adoEOF" )
and so on.
Everything is normal.
But when I take release .exe from the computer with VS6 (WXPSP2)
and put it on the computer with only OS WXPSP2 it does not
work.
There is the msado15.dll in the same folder and registered.
What should I else add to the .exe file to force it work ?

Which is the error? (some code or message from _com_error exception). What kind of data are you trying to access? (ms-access,
foxpro, sql server, oracle, etc). ADO uses oledb providers to access the underlying data. Maybe some of them are not installed (chek
the folder %CommonProgramFiles%\System\Ole DB).
 
Back
Top