My application runs well if is the 32 bit version, but when I added the new 64 bit platform to the Configuration manager and tried to run it, I got the following message at startup:
相关问题
- the application was unable to start correctly 0xc0
- how to call a C++ dll from C# windows application
- efficiently calling unmanaged method taking unmana
- Add or Subtract From 64bit Integer in Javascript
- Why is my COM factory never released during the pr
相关文章
- Why windows 64 still makes use of user32.dll etc?
- Determine if an executable (or library) is 32 -or
- C++: Callback typedefs with __stdcall in MSVC
- Is it possible to check whether you are building f
- Which VC++ redistributable package to choose (x86
- MFC CListView响应HDN_ITEMCHANGING后改变列宽无法自动显示隐藏水平滚动条
- How can I handle the Return key in a CEdit control
- How can I create a guid in MFC
After reading 64bit manifest problem / side by side issue I concluded the problem was the manifest line
So I add to branch it, conditioned by the platform:So, I add to turn it generic, independent of the platform:
Notice the difference in processorArchitecture value.
Now everything is working fine!