visual-studio-2005

Link Error With Visual Studio 2005 Using Windows SDK 7.1

I am in the process of evaluating an upgrade to Windows SDK 7.1 Part of my team's legacy codebase is a large number of ATL web services, which are still maintained using Visual Studio 2005 because (I am told) ATL web services are not supported in versions beyond 2005. When I pointed the IDE to SDK 7.1, I began to receive the following ...

VS2005: how to find text in the current function

In the VS2005 code-editor using C#, how do you search for text in the current function only? It allows searching over the Current Document but I cannot see how to limit the search to only the current function. ...

Add YAAF to the Microsoft Visual C++ search directories

Hi , I am completely new to working on MS Visual Studio. I am trying to install new framework where in the installation guide tells me "Add YAAF to the Microsoft Visual C++ search directories" YAAF i suppose is the directory over here that i have got. But does not mention how do i do it. Could anybody please help? ...

Add YAAF to the Microsoft Visual C++ search directories

Hi , I am completely new to working on MS Visual Studio. I am trying to install new framework where in the installation guide tells me "Add YAAF to the Microsoft Visual C++ search directories" But does not mention how do i do it. Could anybody please help? ...

Extend the Visual Studio C++ Build Process

A found an article (Extend the Visual Studio Build Process) that explained how to override build targets in a C# project file. I tested this, and it seems to work well. However, what I really want to do is override a build target in a C++ project (with Visual Studio 2005). The problem is that C++ projects use different XML. Instead o...

Class modifier for automatically generated classes

When I add a new class to a project, the class modifier/access specifier for the newly created class in Visual Studio is ommitted, thereby making it internal. Is there a way I can specify in Visual Studio settings that whenever I ask for a new class to be created, please make the class public? I looked in the Tools->Options menu but co...

C++ shift from Unix to Visual Studio in Windows

Hi Everybody, I am a professional working for a software firm.In my past company basically i was working on C & C++ on unix.Now i suddenly shifted to C++ on Windows and i feel like i am in a completely different world.Basically i am working on a very big application which was totally written in C++.To keep it simple ,i dont have the so...

XmlDocument.Load(xml) generates No Root Element error from XmlSerializer serialized code.

I have a class like so: [XmlRoot"MyMessageType")] public class MyMessageType : BaseMessageType { [XmlElement("MessageId")] //Property for MessageId ... <snip> //end properties. } This class contains a static method to create an XmlDocument instance to pass to a BizTalk server. Like so: public static XmlDocument...

Qt Visual Studio Add-In Problems

Hi, I am using Qt 4.6.2 with the latest version of the Visual Studio Add-In(1.1.5) with Visual Studio 2005 Professional. I am finding that whenever I restart Visual Studio or switch build targets(I am building Win32 & x64, Debug/Release builds) all of my moc, uic & rcc files will be regenerated even when the .h/.ui/.qrc files have not ...

Images do not display consistently between VS and debugging version

I have a GridView with three Button columns that are set up with images. When I select my path for the image, using the GUI tool that VS provides, the resulting path is something like ~/Images/myicon.png and the image displays fine (sometimes) in the VS Design mode. But the images do not display on the running version of the website (usi...

Visual Studio 2005 creates output directories in lowercase

I am using a standard operating environment which involves Visual Studio 2005 running on Windows XP. The source for the solution is managed in Linux, but edited and compiled using Visual Studio on a Windows computer via a network share. The problem I am facing is that if I change the output directory of certain projects of my solution,...

Why is DumpBin telling me there are no COMDATs in my binaries when I know there are truckloads of the things?

This is the output I get from dumpbin AchievementsTable.obj /HEADERS Microsoft (R) COFF/PE Dumper Version 8.00.50727.762 Copyright (C) Microsoft Corporation. All rights reserved. Dump of file AchievementsTable.obj File Type: ANONYMOUS OBJECT ANON OBJECT HEADER VALUES 1 version 14C machine (x86) ...

How to kick out of a subrutine and start at the next line on the existing subrutine 3 or 4 subrutines up?

Basically I have something like this: public void Form1_btnStart_click() { Void1() NextLine } Public void Void1() { Void2() } I need to get out of Void2 or beyond and go to the "NextLine" spot. Other than putting an if statement after each subroutine to see if a certain value is met and then using "return;", which would cause some pro...

Missing std::find_if_not

I don't have this function in my VS2005 which can be found on MSDN. How should i know when the function was released and can i have it my edition of VS2005? ...

How to sign text or XML with PFX asking for the private key password. (VS 2005)

Hi, I´m trying to sign some text or XML node using my certificates, installed on Internet Explorer or from filesystem (or some method!)...but I want to ask the user for his certificate password when signing. If i´m not wrong, I think that I need that password to access the private key and with that key, sign my data....is ok? Nothing t...

Programmatically Add a Reference to a Visual Studio Project

I want to programmatically add references to Visual Studio projects. This is for creating an add in tool to Visual Studio. What I want to do is use an API of some sort. What I don't want to deal with is just editing the XML of the project file (.csproj, .vbproj). Is there any knowledge out there on how to do this? I couldn't find anythi...

error RC2175 : resource file res\icon3.bmp is not in 3.00 format??

HI, what does this mean, and how to resolve it? error RC2175 : resource file res\icon3.bmp is not in 3.00 format ...

Problem with Visual Studio 2005 Solution

My colleague created a Visual Studio 2005 solution for me and I have copied the entire folder in my machine. The solution contains three different projects. Unfortunately, two of them opens and the third project doesn't with the error message, "The project type isn't supported by this installation". I have installed Visual Studio 2005 wi...

Exclude web.config from server when publishing website (not WAP) VS2005

Hi, How do I exclude Web.config from server when publishing website (not web application project) in Visual Studio 2005 I can see information how to add setting to the Web.Config but in this instance the Web.config is fine on the servers; so I do not want the problem of introducing possible faulty Web.config to a live environment. ...

Visual Studio Designer: Opening XML files as a Grid (hidden feature)

I once had this Add-In to VS2005 that allowed me to edit XML files in a Excel-Like table view. I would access it by right-clicking an XML file from within Visual Studio, click Open With, and then select the Add-In. I would then be able to read/write my simple XML in a nice table format. The way I remember it, this feature was shipped...