Do you run into following error when trying to run a VS2013 .net application on Windows XP? Error: Not a valid Win32 application! This happens because the application is targeting .net framework 4.5 which is not supported on Windows XP. Target a lower framework to get your application working on XP.
Continue reading…
Posts tagged with 'XP'
Windows XP SP3 released!
XP SP3 has been released. You can download it from here -> http://technet.microsoft.com/en-us/windowsxp/0a5b9b10-17e3-40d9-8d3c-0077c953a761.aspx
Continue reading…
Enable/Disable XP Visual Styles for your application
Via resource editor For VC6 add this one line to your .rc file, open it in a text editor…. CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST “YourAppName.exe.manifest” YourAppName.exe.manifest should be your application’s manifest file. Or you can paste YourAppName.exe.manifest to your application folder and XP themes gets enabled. From VC8 onwards manifest file should only be in your res folder, […]
Continue reading…