Re: Problem with C++ dll used by Delphi on Win2000
<mariusz.firszt@gmail.com> wrote in message
news:1180002927.840436.23390@q66g2000hsg.googlegroups.com...
Hi,
I create C++ dll in vs2005 and i use it on application write in Delphi
(BDS2006). I haven't had any problem with my application, when I use
it on WinXP and Vista. But there are problems on Win2000. There is
message that application cannot find my dll immediately after
application start. Ofcourse this dll is in correct folder. I don't
know that this problem is cause I have wrong seting when I create dll
or I do something wrong when using it on Delphi.
The problem most likely is your C++ DLL requires some DLL which is not
present on Win2K. You can run DumpBin /imports (comes with Visual Studio in
Bin\ folder) to see the DLL's required by your C++ DLL.
You could also spend 5 minutes and create a simple Visual C++ .exe that uses
your DLL, then run that on the Win2K system and see if the results are the
same or you get a better error message.
-- David