Windows XP made VC++ Application not running in Windows 2000 Professional...??
-
A server application i made on PC having Windows XP and Visual Studios 6 is running fine on another windows XP machine (after supplying 4 DLL files). But it is not running on a Windows 2000 professional platform. Any solutions ?? Sid.
Possibly XP had a library already that you depend on, and 2000 did not ? It would help to find out what the exact problem is. Also, perhaps you used an API that was new to XP in your code ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
A server application i made on PC having Windows XP and Visual Studios 6 is running fine on another windows XP machine (after supplying 4 DLL files). But it is not running on a Windows 2000 professional platform. Any solutions ?? Sid.
Download the Dependency Walker application and run it on your DLL files. If you find a DLL with a function that has an exclamation point by it that means that that dependency is not resolved hence the dll cannot be loaded. This could be why your application is failing.
Deus caritas est
-
A server application i made on PC having Windows XP and Visual Studios 6 is running fine on another windows XP machine (after supplying 4 DLL files). But it is not running on a Windows 2000 professional platform. Any solutions ?? Sid.
Use from Dependency Walker.Maybe you use from a service that is in xp and isnt in 2000
_**
**_
WhiteSky