VS 2010 and XP
-
I have made a program under VS 2010. It doesn't work on XP on other machines than mine. It asks on some DLLs. What can I do to build a program with VS 2010 that is fully compatible with Windows XP?
36. When you surround an army, leave an outlet free. ... Do not press a desperate foe too hard. SUN-TZU - Art of War
-
I have made a program under VS 2010. It doesn't work on XP on other machines than mine. It asks on some DLLs. What can I do to build a program with VS 2010 that is fully compatible with Windows XP?
36. When you surround an army, leave an outlet free. ... Do not press a desperate foe too hard. SUN-TZU - Art of War
-
I have made a program under VS 2010. It doesn't work on XP on other machines than mine. It asks on some DLLs. What can I do to build a program with VS 2010 that is fully compatible with Windows XP?
36. When you surround an army, leave an outlet free. ... Do not press a desperate foe too hard. SUN-TZU - Art of War
You can try to link with the static libraries of MFC, ATL and the C runtime time. By default it links to the dynamic libraries. Go to
Project -> Properties -> Configuration Properties -> General
. If you're using MFC, changeUse of MFC
fromUse MFC in a Shared DLL
toUse MFC in a Static Library
. If you're using ATL, changeUse of ATL
fromDynamic Link to ATL
toStatic Link to ATL
. Finally go toProject -> Properties -> Configuration Properties -> C/C++ -> Code Generation -> Runtime Library
. Change/MDd
to/MTd
(Debug mode) or/MD
to/MT
(Release mode).«_Superman_» _I love work. It gives me something to do between weekends.
-
You can try to link with the static libraries of MFC, ATL and the C runtime time. By default it links to the dynamic libraries. Go to
Project -> Properties -> Configuration Properties -> General
. If you're using MFC, changeUse of MFC
fromUse MFC in a Shared DLL
toUse MFC in a Static Library
. If you're using ATL, changeUse of ATL
fromDynamic Link to ATL
toStatic Link to ATL
. Finally go toProject -> Properties -> Configuration Properties -> C/C++ -> Code Generation -> Runtime Library
. Change/MDd
to/MTd
(Debug mode) or/MD
to/MT
(Release mode).«_Superman_» _I love work. It gives me something to do between weekends.
I know this is not my thread, but I have to ask this... Last time I checked this out, I walked away thinking I could not do this and utilize MFC extension librairies. Is this still the case? Not saying this would impact the OP's project but if this is still a limitation, it might be worth mentioning.
-
-
You can try to link with the static libraries of MFC, ATL and the C runtime time. By default it links to the dynamic libraries. Go to
Project -> Properties -> Configuration Properties -> General
. If you're using MFC, changeUse of MFC
fromUse MFC in a Shared DLL
toUse MFC in a Static Library
. If you're using ATL, changeUse of ATL
fromDynamic Link to ATL
toStatic Link to ATL
. Finally go toProject -> Properties -> Configuration Properties -> C/C++ -> Code Generation -> Runtime Library
. Change/MDd
to/MTd
(Debug mode) or/MD
to/MT
(Release mode).«_Superman_» _I love work. It gives me something to do between weekends.
-
-
One more question: How can I determine that that Visual Studio 2010 Redistributable Package is installed on a computer?
36. When you surround an army, leave an outlet free. ... Do not press a desperate foe too hard. SUN-TZU - Art of War