Questions tagged [visual-studio-2005]

Visual Studio 2005 is a version of Microsoft's Visual Studio integrated development environment product line for .NET-based and C++ development. Do not use this tag unless you have a specific question about Visual Studio -- not just a coding issue.

Visual Studio 2005 has been superseded by the 2008, 2010, 2013 and 2015 versions at this time.

More information:

3144 questions
1
vote
2 answers

autoexp.dat not parsing union?

I have an in-place vector class that's defined like so: template class svectorbase { // ... protected: union { char* m_char; T* m_t; } m_elems; size_t m_maxsize; int m_elemCount; }; template
tenpn
  • 4,556
  • 5
  • 43
  • 63
1
vote
7 answers

VS2005: when stepping through C# code, is there way to skip through sections of code?

What can be done to skip through the parts of code when stepping through code? I find this particularly annoying when the debugger jumps to property gets and sets. Is there way to avoid this?
CJ7
  • 22,579
  • 65
  • 193
  • 321
1
vote
1 answer

Visual Studio 2005 patched to latest version

After you install service pack 1 and the update for Vista, what are the appropriate hotfixes and patches to apply to bring Visual Studio 2005 to the most recent possible version? I'm hoping for an ordered list of security updates and appropriate…
David Gardiner
  • 16,892
  • 20
  • 80
  • 117
1
vote
1 answer

compiling against MSVCP70.dll instead of MSVCP80.dll in Visual Studio 2005

I am building a project in Visual Studio 2005 that require some libraries that were built in Visual Studio 2003. I'm getting linker errors like msvcprt.lib(MSVCP80.dll) : error LNK2005: class std::basic_string[...]already defined in…
laurenelizabeth
  • 786
  • 1
  • 7
  • 19
1
vote
3 answers

Console Application - Can't Catch Unhandled Exception

I have written a very simple C# Console Application which will open a Crystal Report, refresh it and save it as a PDF to a specified location. When running within VS2005 everything runs fine; the pdf file is generated as expected. When I copy the…
1
vote
3 answers

MDI Child refresh/repaint problems (C#, Winforms, .NET 2.0, VS2005, DevExpress 8.2)

Hiya - been pointed at you guys by a friend of mine. I have an MDI application (C#, Winforms, .NET 2.0, VS2005, DevExpress 8.2) and one of my forms is behaving very strangely - not repainting itself properly where it overlaps with another instance…
kpollock
  • 3,899
  • 9
  • 42
  • 61
1
vote
0 answers

Debugging WCF service hosted in IIS 6.0 using Visual Studio 2005

I've created a WCF service selecting 'WCF Service' in installed web site templates in VS2005. I've added a ASP.Net client for the service in the SAME solution. I published the WCF service in IIS 6.0 and configured it to run in .Net Framework 2.0. I…
NLV
  • 21,141
  • 40
  • 118
  • 183
1
vote
2 answers

3 Tier Winform Application

I have a college project that I want to do as 3 Tier Winform Application so that I need only to update my application at one place (ie the server). Does anyone have suggestion on how to do this? I have to work with a client machine, and a fairly…
Rabin
  • 1,563
  • 4
  • 20
  • 44
1
vote
3 answers

how to convert Gridview to Datatable

I am using GridView in my application for populating datas. Is there any easy way to copy a gridview to datatable ? Actually, in my GridView one of the control is textbox. So I can edit that control at any time... What I need is on the button click…
sona
  • 175
  • 4
  • 5
  • 18
1
vote
0 answers

Enable Unmanaged Debugging always causes Visual Studio crash

Never before had any problems with enabling unmanaged debugging. I'm using Vista, VS Team System 2008 (9.0 30729.1 SP) and VS 2005 Team Edition for Software Developers (8.0.50727.867). Starting today I cannot debug unmanaged code from C#! I cannot…
Greg
  • 1,227
  • 5
  • 23
  • 52
1
vote
4 answers

Error with C++ operator overloading, in Visual Studio AND Xcode

I am working on a C++ assignment for class that wants me to overload the ">>" operator. I am encountering errors linking in both Visual Studio 2005 and Xcode 3.2.2. The C++ code is separated into a few files. The prototypes are stored in overload.h,…
Jordan
  • 4,928
  • 4
  • 26
  • 39
1
vote
1 answer

Use a custom usercontrol in a Janus GridEx

I'm search for a method to add a custom usercontrol in a Janus GridEx with C#. In the designer I have different columntypes (link, text, image, ...) but I need something with more functionality (multiple checkboxes which must be set/saved in a…
Frank
  • 5,741
  • 4
  • 28
  • 49
1
vote
0 answers

Why would Visual Studio 2005 change the StackReserveSize when upgrading a vcproj file?

I have a very old C++ application that was being built with Visual C++ Version 7.0 when I inherited it. When I brought it forward to Visual Studio 2005, the conversion routine apparently changed the value of StackReserveSize from "0" to "66112". I…
msergeant
  • 4,771
  • 3
  • 25
  • 26
1
vote
1 answer

After migrating to Visual Studio 2015 constructor .create missing

I installed Visual Studio 2015 Community and I tried to open two projects here the first worked perfectly, but the second showed the following error in Global.asax.cs The error can be seen below: For some reason it is not finding the .Create…
Roger Oliveira
  • 1,589
  • 1
  • 27
  • 55
1
vote
3 answers

iads.h / VS2005 / W2003 SP2 - which SDK and what are the side-effects?

I'm trying to compile someone elses C++ program using VS2005 on Windows 2003 (SP2). The compile fails because it can't find iads.h Which SDK should I install to get this header ? When I install the SDK is there a danger I might break something…
glaucon
  • 8,112
  • 9
  • 41
  • 63