Question: We just upgraded our Visual Studio 2008 projects to Visual Studio 2010. All of our assemblies were strong signed using a Verisign code signing certificate. Since the upgrade we continuously get the following error: Cannot import the following key ...
Question: In Eclipse there is a shortcut, Ctrl+Shift+F, that re-indents code and fixes comments and blank lines. Is there an equivalent for Visual Studio 2010? Best Answer: Visual Studio with C# key bindings To answer the specific question, in C# ...
Question: I have a C# solution with several projects in Visual Studio 2010. One is a test project (I’ll call it “PrjTest“), the other is a Windows Forms Application project (I’ll call it “PrjForm“). There is also a third project ...
Question: I’ve installed Visual Studio 2012 Release Preview, and it appears to be fine, but now when I try to use Visual Studio 2010 to compile C++ projects, I get the following error message: LINK : fatal error LNK1123: failure ...
Question: I recently discovered that even while logged into my personal laptop as an administrator, Visual Studio does not run in administrator mode and you need to explicitly use Run As Administrator. Is there a way to make it run ...
Question: A file named stdafx.h is automatically generated when I start a project in Visual Studio 2010. I need to make a cross-platform C++ library, so I don’t/can’t use this header file. What is stdafx.h used for? Is it OK ...
Question: I am creating a web application on the .NET 4.0 framework (beta2) in C#. When I try to use a assembly called “ActiveHomeScriptLib”, I get the following error: Interop type ‘ActiveHomeScriptLib.ActiveHomeClass’ cannot be embedded. Use the applicable interface instead. ...
Question: I’m a bit confused regarding the difference between push_back and emplace_back. As there is a push_back overload taking a rvalue reference I don’t quite see what the purpose of emplace_back becomes? Best Answer: In addition to what visitor said ...
Question: Why does this bit of code, run more than 10 times faster than the following bit (identical except where noted)? when compiling with Visual Studio 2010 SP1. The optimization level was -02 with sse2 enabled. I haven’t tested with ...
Question: This is the razor code I would like to enter in here why is this not working? the row is supposed to appear if the value clicked by the user is TESTING. however it does not appear. #Edit 1: ...