compatibility

What is special about the executables compiled with Visual Studio 11 which results in that the executables cannot be executed on Windows XP?

為{幸葍}努か 提交于 2019-11-26 23:00:41
问题 I compile my C++ source code with Visual Studio 11 Developer Preview. I statically link to the runtime library. The resulting executable cannot be executed on Windows XP. When I try to execute it on Windows XP I get the error message "[Executable Path] is not a valid Win32 Application.". According to Microsoft Visual Studio 11 won't support Windows XP. How does it work that the resulting executable cannot be executed on Windows XP? Is there anything special within the executable? 回答1: They

Android Market - This application is available to over 0 devices?

末鹿安然 提交于 2019-11-26 22:57:59
问题 I have published apk to the Android Market, activated and setup for free for all countries. Android Market says, my application is not compatible with any of the devices. I can see an application when I access Android Market from the PC browser but I can not download it from any of the Android phone (the same device used to test application before release). How is that possible if I have just few requirements? I have tested the application on a few quite old devices before upload and it

Is .NET 4.0 Compatible with Windows XP SP2 or below? [closed]

佐手、 提交于 2019-11-26 22:20:57
I have read here http://www.microsoft.com/downloads/en/details.aspx?FamilyID=5765d7a8-7722-4888-a970-ac39b33fd8ab that to instal .NET 4.0 CP (client profile) you must have WinXP SP3 or above. This is somewhat worrying to me as there are many people on SP2 or below. Is there any way I can run a .NET 4.0 app on any version of Windows xp and above? (without worrying about which service packs they have)? If not, what about .NET 3.5, 3.0 or 2.0? My questions are the following: How low do I need to go in my .NET Framework version choice to ensure compatibility for WinXP SP2 or above? How low do I

Program Compatibility Assistant Manifest Not working in Vista32

只愿长相守 提交于 2019-11-26 22:10:09
问题 When I run my application "A driver Installer and Uninstaller Application", I am getting a "Program Compatibility Assistant" window once my exe get ended successfully. After going through the SO links and googling I couldnt find a solution to avoid "Program Compatibility Assistant" window in vista 32. I used the below manifest to avoid PCA and it works as expected (am not getting any PCA window in windows 7) but except windows vista 32? What should I do to make this work? After Using the

Internet Explorer 11 disable “display intranet sites in compatibility view” via meta tag not working

我是研究僧i 提交于 2019-11-26 21:40:40
I have been working on an intranet website for over 6 months were I have been using the below html5 doctype and edge compatibility meta tag to force Internet Explorer to not emulate an older browser version, and this has worked ok. <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>My title</title> <meta http-equiv="X-UA-Compatible" content="IE=EDGE" /> </head> <body> </body> </html> The reason I was doing it this way is because the place I work uses a policy setting to enable compatibility view for all intranet sites, and this approach using the EDGE setting has worked in

python 2.7 equivalent of built-in method int.from_bytes

三世轮回 提交于 2019-11-26 21:34:23
问题 I'm trying to make my project python2.7 and 3 compatible and python 3 has the built in method int.from_bytes. Does the equivalent exist in python 2.7 or rather what would be the best way to make this code 2.7 and 3 compatible? >>> int.from_bytes(b"f483", byteorder="big") 1714698291 回答1: You can treat it as an encoding (Python 2 specific): >>> int('f483'.encode('hex'), 16) 1714698291 Or in Python 2 and Python 3: >>> int(codecs.encode(b'f483', 'hex'), 16) 1714698291 The advantage is the string

Alternative to sun.misc.Signal

狂风中的少年 提交于 2019-11-26 20:20:13
问题 I started research to find an alternative to the sun.misc.Signal class, because it could be unsupported in upcoming JDKs (we're currently working on 1.6). When I build the project I get: warning: sun.misc.SignalHandler is Sun proprietary API and may be removed in a future release I came across multiple solutions but they don't fit my project e.g. in this question. This is unacceptable in my situation because: Signals are used not only for killing application The application is huge - every

VB6 Running on Windows 8?

喜你入骨 提交于 2019-11-26 20:19:29
问题 Assuming that vb6 does not run on Windows 8 because the VB6 run time libraries are not shipped with Windows 8, would it not be possible to install the VB6 run time library on Windows 8 and then then run VB6? Or is there another problem? 回答1: EDIT: Microsoft is going to support the VB6 runtime in Windows 8. VB6 apps still work in Windows 8 in the Developer Preview, as of September 13th, 2011). . They also run in the Consumer Preview and as stated above, Microsoft are committed to having VB6

Is there a list of changes for C#4.0 that work in .Net 3.5?

血红的双手。 提交于 2019-11-26 20:09:50
问题 I've been seeing a lot of C# 4.0 changes as of late. I really like some of them. Also though, I do not want to move on to .Net 4.0 for compatibility reasons just yet. So, is there a comprehensive list of new C# 4.0 language features that will work on .Net 3.5 or lower? As an example, do default parameters require the .NET 4.0 CLR, or are they a compiler feature? It's possible to use automatic properties (a C# 3.0 feature) and still target .NET 2.0, since that doesn't require Framework support

“This program might not have installed correctly” message in Windows 7 RC

。_饼干妹妹 提交于 2019-11-26 19:58:11
问题 I have an installer that works perfectly under NT 5.x, Vista, and Windows 7. It contains the proper manifest for UAC on NT 6.x. But starting with Windows 7 RC, every time the setup program closes, Windows produces an erroneous "This program might not have installed correctly" message, even though the program did install correctly with no problems whatsoever. I never got these spurious messages in Vista or in Windows 7 beta. I sent a bug report to Microsoft, but have not heard back. I thought