我正在使用VB.NET在Visual Studio C++ 2008中创建我的第一个程序-我找到了一些不错的源,可以使用一些简单的API上载图像来学习。
它对我来说是完美的,所以我去了Build> Build Solution,不要进入我的Debug文件夹,并找到它的.exe。
我将其发送给 friend ,打开它们时,他们收到以下错误:
The application has failed to start because its side-by-side configuration is incorrect.
Please set the application event log or use the command-line sxstrace.exe tool for
more detail.
我是新手,因此,如果有复杂的解决方案,请花点时间逐步解决!谢谢!
最佳答案
您的 friend 可能缺少Dev Studio 2008的VC Redist文件。
Google“vc redist 2008”。
此外,他将无法测试调试版本,因为调试运行时仅包含在编译器中;因此,调试器将包含调试运行时。没有独立的安装程序。您需要在发行版中重建您的应用程序。
关于c++ - “Side-By-Side” Visual Studio C++错误?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8394800/