visual-studio-2005

See All Files Changed in Multiple Changesets in VSTS

Does anyone know how get a listing of all files changed in multiple changesets in Visual Studio Team System 2005? I basically want to see a listing of all files changed from the start of a development effort till the end. ...

Switching 3rd party compilers in devenv from the command line

We have an automated build system, which builds a variety of Visual Studio 2005 solution files. These solutions contain various Visual C++ and Intel Fortran projects. We are in the process of upgrading our Intel Fortran compiler, and Visual Studio is currently setup to be integrated with the old Intel compiler (ver 9.1). I'm looking fo...

Is a dynamic web reference really dynamic?

Currently I'm looking at a problem with web references in vs2005 .net I have multiple web applications with multiple dynamic web references, now in the web.config I see the following code: <applicationSettings> <MainWeb.Properties.Settings> <setting name="MainWeb_localhost_WebService" serializeAs="String"> <valu...

How to setup Google C++ Testing Framework (gtest) on Visual Studio 2005

It is not documented on the web site and people seems having problem setting up the framework. Can someone please show step by step introduction to a sample project setup. ...

Signing in Visual Studio 2005 - error using existing .pfx

Built my project. Created my .pfx using sn.exe -k (to create ShellTradingCCMPROD.pfx). Copied the file to the application folder. In VS 2005, I go to the Signing tab, 'Select From File' and browse to the .pfx file. I hit 'Open' and I get the following error: The file 'C:\2009.02.1.1\ShellTrading.CCM.WinUI\ShellTradingCCMPROD.pfx' cou...

How do I enable the 'auto fill' option for a property in VS 2005?

How do I enable the 'auto fill' option for a property in VS 2005? ...

Using SFINAE to detect POD-ness of a type in C++

The original title here was Workaround for SFINAE bug in VS2005 C++ This is tentative use of SFINAE to make the equivalent for the is_pod template class that exists in TR1 (In VS2005 there's no TR1 yet). It should have its value member true when the template parameter is a POD type (including primitive types and structs made of them) an...

Bulk upgrade VS2005 solutions to VS2008

Is it possible to bulk upgrade (many at the same time) VS 2005 projects to VS 2008. I know that I can open one at a time, however, I would like to select say 10 at a time to upgrade and add to a new solution. ...

How do you make sense of the error: cannot convert from 'int []' to 'int []'

When compiling the following code: void DoSomething(int Numbers[]) { int SomeArray[] = Numbers; } the VS2005 compiler complains with the error C2440: 'initializing' : cannot convert from 'int []' to 'int []' I understand that really it's trying to cast a pointer to an array which is not going to work. But how do you explain the ...

Using devenv arguments /Build and /ResetSettings

Our automated build system builds a variety of Visual Studio 2005 solutions using devenv solution.sln /Build config|platform We have a need to use a specific set of Visual C++ directory settings for a given solution file, these settings have been exported from Visual Studio as a .vssettings files. If I start Visual Studio with dev...

Visual Studio hangs when deploying a cube

Hello All, I'm having an issue with an Analysis Services project in Visual Studio 2005. My project always builds but only occasionally deploys. No errors are reported and VS just hangs. This is my first Analysis Services project so I am hoping that there is something obvious that I am just missing. Here is the situation I have a cub...

How to Overcome Errors Thrown by mmsystem.h

Hi, I am not able to get out of these simple bugs, but would be great full if some one could answer to weed out from these errors. I included windows.h and some other necessary headers but couldn't able get out of it. Snippet of errors: error C2146: syntax error : missing ';' before identifier 'MMVERSION' error C4430: missing type sp...

Why can't I debug?

When I was about to debug C++ program in VS2005,the program didn't stop at the breakpoints. The VS said"No symbols are loaded for any call stack frame. The source code cannot be displayed". What can I do? ...

Accessing Calendar control through Javascript

I have a asp.net calendar control, say Calendar1, in invisible state (visible = false ). How can I set visible to true using javascript when i press a client side button so that there is no postback done ? ...

Calling .Net Class Library (dll) from VB

Hi All, I've used a tutorial (http://support.microsoft.com/kb/317535) to create a VB.NET Class that exports a COM visible method for calculating MD5 checksums. The problem is that I need to call this .dll from a language similar to VB (Extra Basic) and it only supports COM calls. On my machine everything works like a charm, but on the ...

google code cache-table at VC 2005

I'm trying to compile google cache-table using Visual Studio 2005 and remains one issue : \mm\cache_table.hpp(734) : error C2780: 'void std::_Destroy(_Ty *)' : expects 1 arguments - 2 provided c:\arquivos de programas\microsoft visual studio 8\vc\include\xmemory(58) : see declaration of 'std::_Destroy' \mm\cache_table.hpp(714) : while c...

when running asp.net project I get: Internet Explorer cannot display the webpage

hello, I recently installed vs2005 with sp3.5 on a new vista computer. Never had Visual Studio installed on this computer. whenever i'm building a web project, i receive the following: "Internet Explorer cannot display the webpage". I can't run any of my projects... Thanks ...

Bind DropDownList into DataGrid Header

Hellow , I am Ma'moun , Please I Need Help in this Web Site I attach it in this Mail , I use(ASP.Net 3, SQLSERVREQPRESS) I develop a Web Site For a school , The Web Site has a page (Exams.aspx) wehen that page load the dataGrid will fill all student mark from table(dbo.Marks) The table (dbo.Marks) get its own Mark from (dbo.Exams) , ...

Tortoise SubWCRev.exe Pre-Build Event

Hi, I run the following command as a pre-Build event in Visual Studio 2005 and it works fine: SubWCRev.exe "C:\work\subversion\aviOffline .Net\trunk" "c:\test.tmpl" "c:\testout.txt"C:\work\subversion\aviOffline .Net\trunk" So I change the command to use the in-built Visual Studio macros for better maintainability but it fails. It ...

Howto force Report Viewer to be shown in print preview mode

In Visual Studio 2005, how can I show a report in ReportViewer control directly on Print-preview mode? ...