Questions tagged [visual-studio-2003]

Visual Studio 2003 is a version of Microsoft Visual Studio. Do not use this tag unless you have a specific question about Visual Studio -- not just a coding issue.

291 questions
9
votes
3 answers

"An operation is not legal in the current state" error when trying to launch ASP.NET project in VS2013?

I have an ASP.NET web site created with WebMatrix 3. I do have the option in VS2013 checked to use the 64-bit version of IIS Express since I am running on 64-bit Windows 8.1. When I try to launch the project I get the error "An operation is not…
Robert Oschler
  • 14,153
  • 18
  • 94
  • 227
8
votes
3 answers

Strange C++ syntax

I have 8 years of coding experience, but I have never seen the operator [] passed as a parameter to the function definition. For example, the following code (from an open source project): bree::porder(m_root, [] (treenode* node) { delete node;…
Arjun
  • 169
  • 1
8
votes
5 answers

Matching va_list types between compilers

I have a project that consists of a bunch of dynamically loaded modules. Originally, everything was always built with MSVC 2003, but lately I've been working on getting it to work with GCC. Everything has been going pretty smoothly, except for one…
Carl Norum
  • 219,201
  • 40
  • 422
  • 469
7
votes
7 answers

Is Visual Studio 2003 still available/supported

Pretty much what the title says really. We have some code that is .NET 1.1 based and no real desire to up-convert it. However, we are looking to add developers to the team and they will need copies of Visual Studio. My understanding is that they…
Martin
  • 39,569
  • 20
  • 99
  • 130
7
votes
1 answer

Boost 1.57.0 bootstrap.bat not working for Visual Studio .NET 2003

On a dev machine Vista SP1 with only Visual Studio .NET 2003 SP1 installed - with boost 1.44.0 I have no problem to generate b2.exe and bjam.exe using bootstrap.bat - with boost 1.57.0 I get this error message when running bootstrap.bat : …
Manuel Rozier
  • 677
  • 5
  • 9
6
votes
2 answers

In VS 2003, how to suppress deployment of .NET CF 1.0 every time I debug?

I'm (unfortunately) using VS 2003 to develop for some Windows CE .NET 4.1 mobile devices. The app is written in .NET Compact Framework 1.0 (the OS cannot support any later version of the .NET CF). Whenever I run my app from Visual Studio, it…
Pandincus
  • 9,506
  • 9
  • 43
  • 61
5
votes
1 answer

Problem passing a reference as a named parameter to a variadic function

I'm having problems in Visual Studio 2003 with the following: void foo(const char*& str, ...) { va_list args; va_start(args, str); const char* foo; while((foo = va_arg(args, const char*)) != NULL) { printf("%s\n", foo); …
Michael Mrozek
  • 169,610
  • 28
  • 168
  • 175
5
votes
2 answers

Does TFS 2010 support Visual Studio 2003 and 2005 connections?

I have been unable to locate any information on compatibility with Visual Studio 2003 or 2005. I currently have TFS 2010 working correctly with Visual Studio 2008, but we have some developers with Visual Studio 2003 and 2005 instances.
5
votes
1 answer

Thread.Sleep or Thread.Timer hanging system?

I have been looking around for over a week now, and I haven't been able to find anyone else having a similar problem to what I'm seeing here. I'm working with an OLD application running on Windows XP and developed in Visual Studio 2003. All of a…
5
votes
3 answers

Developing for Sharepoint 2003 using Visual Studio 2008?

Does anyone have experience with developing for Sharepoint 2003 using Visual Studio 2008? I need to upgrade to VS2008 because of Vista issues but need to support Sharepoint 2003 webparts. The webparts are all pretty simple. Will I be able to support…
paul
  • 13,312
  • 23
  • 81
  • 144
5
votes
1 answer

Where is the "Publish" operation on Visual Studio 2003?

I've been using the "Publish" operation on Visual Studio 2005 and 2008 (By right-clicking a project under the Solution Explorer and selecting "Publish" on the context menu). Now I was given a ASP.Net web application to modify that was done on Visual…
Jojo Sardez
  • 8,400
  • 3
  • 27
  • 38
5
votes
4 answers

Download Visual Studio 2003?

Hi I have an application developed in .NET 1.1 using Visual Studio 2003. I have to add some functionalities to it for which I need Visual Studio 2003 but unable to find it any where. I would really appreciate if any of you could redirect me to a…
msbyuva
  • 3,467
  • 13
  • 63
  • 87
5
votes
3 answers

How to build a solution to target 64 bit environment?

Is there anyway to build a solution to target 64 bit environment in vs2003? My solution is native c++ not visual c++. Any help would be greatly appreciated. cheers, RWendi
RWendi
  • 1,446
  • 5
  • 20
  • 38
4
votes
2 answers

OCX file does not deploy from MSI generated with Visual Studio 2003 on Windows 7

I have an legacy installation from a DotNet 1.1 application (with Visual Studio 2003) that will not deploy the msflxgrd.ocx file on the FIRST installation on Windows 7. If I uninstall the MSI and then run the same MSI again, (and future…
Sam
  • 669
  • 1
  • 13
  • 26
4
votes
3 answers

How to build a C++ project from within VS11 using the VS2003 toolset?

I tried adding a copy of the (working) platform toolset for Visual C++ 2005 to C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\PlatformToolsets\v71, replacing everything that made sense. But when I try to compile my project, the…
Timbo
  • 27,472
  • 11
  • 50
  • 75
1
2
3
19 20