visual-studio

Poppler compiling using QT4 under Visual Studio 2008

How can I compile poppler 0.13.3 using Visual Studio 2008, and with QT4 support? I want to use poppler as a static lib. Can anyone help, or has anyone done this? Thanks ...

Specified location is invalid. Please choose another

Hello, I am getting error while installation of Visual Studio. they show Message "Specified location is in valid. Please choose another".what solution for this problem if you have any answer then reply me. ...

Localized License Agreements in Visual Studio Setup Projects?

I've added a EULA using VS2005's built in License Agreement UI form in a Setup Project. This form has a LicenseFile property that you set to an RTF file that displays the EULA. Assuming I have a number of translated RTFs, how can I make the EULA that is displayed point to the appropriate RTF localized to the user's Windows CurrentCultu...

Cannot add SourceSafe Database as Visual Studio 2010 source control.

My issue is that I cannot add SourceSafe Database for source control within Visual Studio 2010. Our team was initially using VSS for source control in Visual Studio 2010. During an evaluation of TFS, I switched my source control to TFS. It will be a few weeks before a decision is made on TFS, so I needed to switch my source control ...

VS.NET 2008 - Stop Giving me a Table Adapter.......

I'm trying to see if there is a way to stop VS.NET 2008 from doing something which is very annoying to me and our particular standards of coding. When you create a blank dataset and then drag over from the server a table (or tables), VS.NET automatically creates a table adapter for that table, puts the connection information into the X...

How do you specify a 64 bit unsigned int const 0x8000000000000000 in VS2008?

I read about the Microsoft specific suffix "i64" for integer constants. I want to do an UNsigned shift to a ULONGLONG. ULONGLONG bigNum64 = 0x800000000000000i64 >> myval; In normal C, I would use the suffix "U", e.g. the similar 32 bit operation would be ULONG bigNum32 = 0x80000000U >> myval; I do NOT want the 2's complement sign exte...

Visual Studio Debugger Voodoo

Ok, maybe this isn't so amazing considering I don't really understand how the debugger works in the first place, let alone Edit and Continue, which is totally amazing. But I was wondering if anyone knew what the debugger is doing with variable declarations in this scenario. I can be debugging through my code, move the line of execution ...

Command to Change Build Action="None"

Hi Guys, I am trying to build a command line script which changes a bunch of files to build action="none" in VS2008. I was hoping to then be able to run a post-build command to change it back again [for debug] Anyone know how I could set this up as an external .cmd file ? ...

Visual Studio IDE: I want it to make a sound after it compiles so I can get back to work.

Would be a nice thing - do I have to write a script or can't I just tweak the build script to do some task? ...

automatic create MSBuild for Visual Studio

Is it possible to automaticaly create msbuild.xml from VS project? ...

How can I listen for the deletion of a ProjectItem via DTE?

I've got a designer that relies on the existence of other solution items. If one of those items is deleted the designer crashes and you have to edit as XML to fix. Not exactly user friendly. I do, however, have the DTE object representing the instance of Visual Studio, as well as the ProjectItems I am dependent on. Is it possible to,...

Visual Studio add-in to quickly test a code snippet

One thing I really love about languages such as Python is that if you have a piece of code you'd like to try out, you can just open the interactive shell and do it in seconds. Is there a Visual Studio add-in that does the same for C#? Basically what I'm looking for is something that opens up a window or tab with a text editor (preferab...

how to run if(!User.IsAuthenticated) or access Profile.values in App_Code? c# .NET

i'm trying to run a conditional statement in a class i'm placing in my App_Code folder the condition is whether the person is logged in or not. I normally have two ways to do this in my masterpage and ASPX's if (!User.IsAuthenticated) or if(Profile.username = "anonymous") however neither of these things seem available to me in the .cs...

Productivity features in VS, how to display documentation

I used to program quite a lot in Java, recently I've began to work with C#. I think that most of advantages of C# (comparing to Java) are corrupted by VS. Now what really makes me crazy is intelisence. It offers only list of classes of that are already in "using". I would like to see suggestions of all classes from all libraries. Then,...

Is the stack unwound when you stop debugging?

Just curious if my destructors are being called. (Specifically for Visual Studio, when you hit the red stop button) ...

Visual studio 2005 debugger won't stop at requested break points...

I have debug=true both in the web.config and in the requested file but it still won't stop. Thanks... ...

How do I create a makefile from a Visual Studio solution file?

I have a Visual Studio project that uses a solution file to build it. I want to generate a makefile so that I can build it using the makefile instead of the solution file. (The reason I need to do this in case you are wondering is that I am incorporating my project into a larger software system that uses makefiles to build, and I want to...

Get Row of DataGrid in User Control Page

My Question is related to access the rows in one page and putting conditions in another page. I need to check whether a datagrid has row in it or not. DataGrid is in .aspx page. Based on this checking i need to write a condition in .ascx page. the .ascx on which condition is checked is linked to .aspx page. Meaning that UserControl1.a...

Visual Studio Code Analysis - Does Microsoft follow it themselves?

Did a quick search but could not find anything about this. I guess all of you know that the Visual Studio Code Analysis is quite nitpicking and gives warnings about a lot of things. Does anybody know how well Microsoft follow this themselves..? That is, if I were to run a code analysis on their assemblies, would the warnings be none or ...

Visual Studio Solution: static or shared projects?

When a whole project (solution) consists of multiple subprojects (.vcproj), what is a preferable way to tie them: as static libraries or as shared libraries? Assuming that those subprojects are not used elsewhere, the shared libraries approach shouldn't decrease memory usage or load time. ...