Visual Studio 2012 is the latest version in Microsoft's Visual Studio product line

learn more… | top users | synonyms (4)

1
vote
0answers
8 views

xUnit Runner for Visual Studio 2012 and native .dlls

Context I am an application with C# and C++/CLI dlls. The C++/CLI dlls reference pure C++ .dlls, e.g. the boost libraries. Tests are compiled into Tests.dll, which is placed with all the other ...
0
votes
0answers
13 views

Visual Studio 2012 Color Theme on Visual Studio 2010

Actually I'm working with both versions and I love the Dark Style of VS2012. I know there is a lot of plugins for VS2010 that make it like VS2012, such icons, IDE color and so on. I'm refering to ...
8
votes
1answer
79 views

How come a const temporary chooses to call a non-const member function over a const one? [duplicate]

The example code is taken from: http://en.cppreference.com/w/cpp/types/add_cv (I modified a little.) struct foo { void m() { std::cout << "Non-cv\n"; } void m() const { std::cout ...
0
votes
1answer
27 views

Extract image sources from a web page, where img tags might be added when the page is rendered by javascript etcq

I want to extract the "" of all the images in a web page in C#/asp.net. I am using: WebClient client = new WebClient(); string mainSource = client.DownloadString(URL); and searching mainSource ...
0
votes
1answer
21 views

Relacement type defination for SQLHANDLE instead of void *

For 64 bit Windows and odbc version > 3.0, sqltypes.h defines SQLHANDLE as #if defined(WIN32) || defined(_WIN64) typedef void* SQLHANDLE; #else If you need to marshal this ...
1
vote
0answers
16 views

Custom MSBuild Task: how to flush logging in VS2012 output window while task is still running?

I have a custom MSBuild task that takes some time to complete. It outputs progress using either Log.LogMessage() or BuildEngine.LogMessageEvent() (tried both). My problem is that all output doesn't ...
1
vote
0answers
18 views

Reference.cs is empty when generating service client

I am trying to setup a VS2010 project in VS2012 and have a problem with generating the service references. Somewhere it fails and Reference.cs becomes empty. I looked at this: WCF Service Reference ...
0
votes
1answer
10 views

Can't find the Visual Studio 2012 Express for Web installation

I am pretty sure I installed VS 2012 Express on my new laptop a month ago. I even posted on Facebook about how I didn't like the default themes because the window borders were too light in color. ...
0
votes
0answers
16 views

error MIDL2003: redefinition when compiling ATL generated idl with windows.h and sql.h included

As part of a requirement, I had to include sql.h and windows.h in an ATL generated idl. Unfortunately, it keeps on complaining when sql.h is included 1>c:\program files (x86)\windows ...
0
votes
1answer
29 views

Developing in VS2012 with no admin rights

I'm doing some research on limitations of developing with VS2012/Windows7 with no local admin rights. I found this link re: VS2003 and lack of admin rights. However can not find any information ...
0
votes
0answers
37 views

Namespace indentation in Visual Studio with C#

Visual Studio indents code within namespace. This can be avoided when disabling indentation globally, which is not what I want. In all other cases, the indentation is fine, I simply don't like the ...
0
votes
0answers
14 views

How to make working web deployment tool in visual studio 2012

Our web deployment tool which was working fine in Visual Studio 2010 got screwed when we upgraded to Visual studio 2012. What are the best option to achieve same functionality or can we do some ...
0
votes
0answers
10 views

ASP.Net mvc website not deployed properly on localhost

I'm trying to deploy a website from Visual Studio 2012, but it does not seem to work properly whenever I deploy it to my local IIS server using "Publish" from the projects context menu. However, when ...
0
votes
2answers
44 views

how to stop stopwatch during debugging C# and vs2012

So i have some code that depends upon stopwatch for some calculations. However once stopwatch starts it doesn't stop even during debugging and it is creating problems for me when i try to debug the ...
0
votes
0answers
28 views

Outlook Add-in fails when searching Exchange Global Address List

I'm creating an Outlook 2010 Add-In using VS2012. This Add-in will add all the members of a distribution group to the auto-complete list in Outlook. That's all working but only when debugging in VS ...
0
votes
1answer
24 views

“Csc.exe” exited with code -1073741819

Everytime I try to run my code, I am having this error that "Csc.exe" exited with code -1073741819 , I cleaned my solution and restarted Visual Studio with no gain. Can anyone help me?
2
votes
1answer
83 views

How to specialize for member function type in template class?

I just tested the following codes, and I find out std::is_function doesn't accept member function types.(I'm not sure if this is true for other compilers, I'm using MVC++ Nov 2012 CTP) class Ac { ...
0
votes
1answer
19 views

Visual Studio 2012 Database Project - Construction of frame content failed

This might not be the right forum for an issue I'm having, however, I'm dead in the water until I can solve it. My VS 2012 solution has a Database project: Database.sqlproj. Today I hit a colliding ...
0
votes
0answers
10 views

VS 2012 Web Site NuGet packages

We are using NuGet to do dependecy management for our project files and for the most part it works great. We also use ASP.NET Web Site projects (this cannot be changed at this time), and specified ...
2
votes
1answer
32 views

Warning when method is too long?

I'm looking for a way to create a rule for StyleCop, Resharper, Visual Studio itself or at least a add in which show me a visual warning if a method is longer than X characters / longer than X lines. ...
0
votes
1answer
5 views

VS2012 does not format the c# code after installing VS2010

I have installed VS2012 first. Then I need to install VS2010 Express for Microsoft Micro Framework 4.2. After that VS2012 does not format the code. I try repair VS2012 but it does not work. To be ...
0
votes
0answers
44 views

consume Java Web Service in .NET Client

I have a Java Web Service at https://www.domain.com/service1 I need to consume this service in .NET Client. This service requires WS Security UserName and/or RequestContext.username I cannot add ...
0
votes
0answers
20 views

How to modify App created from Split App template to support grouped ListView headings when programming in WinRT?

When creating a Windows App Store app in Visual Studio Express 2012 for Windows 8; if one was to create a new app using the provided Split App template, what specific modifications would be required ...
0
votes
0answers
65 views

Windows phone 8 Sqlite setup

I started setting up the windows phone 8 sqlite and everything worked out great. I installed the SQL for Windows phone extension. Then i proceeded on adding the solution (Sqlite.vcxproj). After that i ...
1
vote
1answer
42 views

Exception when attempting to connect to SQL Server CE from C#

I'm an newbie who is trying to get learn some web programming. I'm making my site in VS 2012 using C#. I've got a database connected in the App_Data folder, using SQL Server CE 4.0. I'm attempting to ...
0
votes
1answer
11 views

How to implement IVsStatusbar when making a Visual Studio Add-In

I am trying to create a visual studio add-in, and one of the things I will need to do is interact with the status bar. According to MSN: Status Bar it should be a fairly straightforward process. ...
0
votes
1answer
38 views

Why is my vs2012 forcing extra parentheses

First, thank you for taking pity on me and reading this issue. I CANNOT for the life of me figure out what extension I might have installed that is causing this issue, but it is EXTREMELY cumbersome. ...
0
votes
0answers
19 views

How to specify 32-bit Windows Debugger in Visual Studio 2012 when doing kernel mode debugging

I have a 64-bit host/target, but I need to use the 32-bit version of Windows Debugger so I can load some 32-bit debugging tool libraries. This works fine when invoking windbg.exe directly, but when I ...
0
votes
2answers
38 views

WinAPI create metro style application issues

I'm trying to implement simple metro style window using WinAPI (basicly like Visual Studio 2012 style) to run on Windows 7 and Windows 8, I know it a hard work and at begin, I have those problems: ...
0
votes
0answers
11 views

InstallShield for VS2012 not sending registration email

I have tried installing InstallShield Limited Edition for Visual Studio 2012 but the promised registration email never arrives. I've tried different machines (all Win7), different email addresses and ...
1
vote
1answer
47 views

XDocument.Save(string) not available

I'm using VS 2012 Express for Windows 8.I want to load an XML file, modify its content and then save it back to disk. Up to now, I've been using LINQ to XML and I've been able to load the file, ...
1
vote
2answers
60 views

How do I get the HTML encoding to work in my ASPX page?

I have the following code in an asp Gridvidiew: <asp:HyperLink ID="hlPSTNNum" CssClass="OrdRef" Text='<%# DataBinder.Eval(Container.DataItem, "PSTNNum")%>' runat="server" ToolTip='please ...
0
votes
0answers
33 views

Validate a data template column combobox in wpf c# visual studios

So like the title says really I just want a way to validate a combobox, so if it's empty it throws an error, or if there is a value in it that is not recognized (my combobox has property Editable set ...
2
votes
1answer
27 views

Automatic reference to Microsoft.Data.Tools.Schema.Sql.UnitTesting

The following references are being automatically added to my (console application) project: Microsoft.Data.Tools.Schema.Sql.UnitTesting.dll Microsoft.Data.Tools.Components.dll My boss can't open ...
0
votes
1answer
30 views

How to generate .trx file in vs2012?

I am using VS2012 Ultimate edition for my Coded UI project. My project is not generating .trx file in the TestResults folder. Please suggest me steps to get .trx file using Visual Studio 2012. many ...
0
votes
0answers
14 views

Oracle Databse client error

I have 64bit windows and I have Visual studio 2012 also 64bit. I have install Oracle client 64-bit, but I am getting this message when I try to connect to my database server.. ...
0
votes
1answer
34 views

Is it possible to manually configure between ARMv7 and Thumb instruction set when compiling for Windows Phone 8?

I am working on a Windows Phone 8 app, and testing it on Lumia 920 (having Snapdragon S4 processor, supporting ARMv7 instruction set). My project includes native code which is written in C++ language. ...
0
votes
1answer
29 views

Update a Gridview from a JQuery Slider

I am trying to use a JQuery UI Slider to update a gridview in Visual Studio. Can someone tell me how to use postback or some other function to achieve this. Thanks for your time. JQuery UI Slider ...
0
votes
1answer
22 views

CodedUITests: Can i cancel a testrun when some requierements in ClassInitialize couldnt reached?

is there a way to cancel a testrun in ClassInitialize()? For example, i start the application i wanted to do some test with in my ClassInitialize() method. If the application couldnt be started i ...
0
votes
1answer
22 views

C#/WPF intellisense order by type VS2012

The order is usually alphabetical: I want the order will be by Type, ie: poperty first and after that attached property and so on... There is any way to do that?
1
vote
3answers
29 views

Loading an interface fails

I'd like to use a COM function : CreateInstance http://msdn.microsoft.com/en-us/library/k2cy7zfz%28v=vs.80%29.aspx like this IPointer p=NULL; HRESULT hr=p.CreateInstance(xxx); However I don't have ...
0
votes
0answers
15 views

Starting Multiple Visual Studio 2012 Web Applications in Tabs of a Single Browser Instance

I have two ASP.NET MVC 4 projects in a single solution in Visual Studio 2012. I have the solution set to use multiple startup projects, with the action set to Start. When I click the Start toolbar ...
0
votes
0answers
5 views

Trigger file's Custom Tool action via hot key (Vis. Studio)

Is it possible to set a hotkey to trigger the Custom Tool action on a particular file? To put this in context I'm trying to trigger a custom MSBuild target when I save a TypeScript file (Setting ...
0
votes
1answer
57 views

asp.net mvc4 project compiles ok but gives the yellow screen of death

looks like i'm not the only one with this issue Visual Studio 2010 is not catching compile errors on build ...
0
votes
1answer
16 views

Viewing all descendant files in TFS/VS

Is it possible to see all descendant files in the marked folder in the Source Control Explorer window in Visual Studio? Other source control software I have used have this option, and it makes it ...
1
vote
1answer
12 views

Dynamic/automatic updated history in TFS/VS

Is it possible to make the History window in Visual Studio to track the active selected item in the Source Control Explorer window? Other source control software I have used have this option, and it ...
-2
votes
1answer
82 views

Why isn't the “!=” operator working for me in C++ VS2012

A simple example: #include <iostream> #include <cstring> int main(void) { using namespace std; string a="abc"; string b="abc"; if(a!=b) cout<<"abc"; } ...
4
votes
2answers
138 views

What is this compiler error when using a lambda as a template parameter?

Edit: This has been reported as a VS2012 C++ compiler bug on Microsoft Connect (link). I've been struggling with a VS2012 compiler error message I don't understand, so I trimmed down the problem ...
0
votes
0answers
29 views

Non-Existant Ambiguous Reference Exception

I am at the end of sanity. I have been trying to incorporate the archive and post pages of blogengine.net into a different site than the actual blogging site. Most of it works, with the exception of ...
1
vote
0answers
18 views

Unresolved External - DirectX11

1>------ Build started: Project: Setup, Configuration: Debug Win32 ------ 1>Effects11d.lib(EffectAPI.obj) : error LNK2019: unresolved external symbol _D3DCompileFromFile@36 referenced in ...

1 2 3 4 5 144