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.
Questions tagged [visual-studio-2003]
291 questions
2
votes
0 answers
Break on Arbitrary Event in Visual Studio
I'm trying to trace some legacy code at work, Visual Studio 2003 and .Net 1.1. There are actions done on Keypress and Text change that I know happen but, the Text fields themselves are made dynamically or are a control. I need to find the code…

Cericme
- 146
- 7
2
votes
2 answers
PDB remains open after debugging (Windows 10, Visual Studio)
Our previous development systems used Windows XP and Windows 7. Debugging C++ DLLs from Visual Studio worked great.
A recent move to Windows 10 has resulted in an annoying problem. We can debug once (using F5), but the 2nd time results in a linker…

AlainD
- 5,413
- 6
- 45
- 99
2
votes
5 answers
How do you make a .NET executable run as a 32-bit process on a 64-bit OS?
I want to make my .NET application run as a 32-bit process on a 64-bit machine with .NET1.1. The target platform option was introduced in later versions of VS(2005), but I am using VS2003 and .NET1.1 and don't have an opportunity to use other VS or…

Armen Tsirunyan
- 130,161
- 59
- 324
- 434
2
votes
1 answer
DLL version mismatch: The located assembly's manifest definition does not match the assembly reference
I have a legacy project in Visual Studio 2003 that was made in the past by other developers.
This project has some references added. One of them, let's say myDLL.dll. It has the properties below in VS:
Copy Local = True
Runtime Version…

Willy
- 9,848
- 22
- 141
- 284
2
votes
8 answers
SQL match on letter and number arrangement without using regular expressions
Is it possible to write an SQL statement for MySQL which finds all rows which match a specific arrangement of letters/numbers without using REGEXP?
i.e. SELECT myCol FROM myTable WHERE myCol='{number}{number}{letter}'
Should return 12X and 34Y but…

Urbycoz
- 7,247
- 20
- 70
- 108
2
votes
3 answers
Visual Studio 2003 - opening ASP.NET project - getting "The operation timed out" error message
Occasionally, when I open a visual studio 2003 ASP.NET project it seems to spend forever loading up then finally displays the following error message:
"The web server reported the following error while attempting to create or
open the web project…

acripps
- 173
- 3
- 8
2
votes
1 answer
Date format issue
I'm facing problem while conversion of date
if I used -- Date.parse("28/01/2011")
it gives me error as
"String was not recognized as a valid DateTime."
so then I modify above code as -- CDate("28/01/2011")
it gives me error as
"Cast from string…

Amit Patil
- 1,893
- 4
- 19
- 23
2
votes
3 answers
What should I look out for when migrating a project from VS2003 to VS2005
In the very near future I'll be migrating some web applications from VS2003 projects to VS2005 projects.
What should I watch out for?
Anyone done this in the past and have it go bad?
How much time should I expect it will take to migrate a project?
I…

Eppz
- 3,178
- 2
- 19
- 26
2
votes
5 answers
Could not start ASP.NET or ATL Server debugging
I installed Visual Studio 2003 on Windows 7 but I am getting the following error on when I press the F5 for debugging.
Error while trying to run project: Unable to start debugging on the web server.
Could not start ASP.NET or ATL Server…

onder
- 795
- 3
- 14
- 32
2
votes
0 answers
How to make member template functinon a friend in VC7
I'm trying to make a member template function, declared in a non-template base class, a friend of the derived class. Both methods of declaring it work using Visual Studio 2012. However, Visual Studio 2003 complains with errors below. As a…

Steve
- 117
- 1
- 9
2
votes
2 answers
MFC doc/view architecture - create document without initial view
I'm transferring some old C++ code from an old build environment (VS2003) to a (slightly) newer one (VS2010) - a newer IDE is not appropriate for various reasons. I'm trying to build it with as few changes as I can manage.
It loads up a set of views…

nmw01223
- 1,611
- 3
- 23
- 40
2
votes
8 answers
What code changes are required to migrate C++ from VS2003 to VS2005?
We are considering moving the win32 build of our cross-platform C++ application from MS Visual Studio 2003 to MS Visual Studio 2005. (Yes, very forward-looking of us ;)
Should we expect to many code changes to get it compiling and working?

Andy Balaam
- 6,423
- 6
- 34
- 37
2
votes
2 answers
Anyone Know a good tutorial of how Crystal Reports for Visual Studio works?
I am stuck building reports that will be generated by a custom application using the Crystal Reports 9.1.5 that comes with Visual Studio 2003. In addition to the editor being one of the most infuriating things I've ever had to work with I am also…

George Mauer
- 117,483
- 131
- 382
- 612
2
votes
0 answers
How to set CommandTimeout in SqlHelper.ExecuteDataSet()?
I have a method which uses SqlHelper.ExecuteDataSet():
Private Function UpdateStatusCode(ByVal no As String, ByVal status As String) As Boolean
sqlConn = New SqlConnection(Conn)
Dim breturn As Boolean
Dim param1 As SqlParameter = New…

hendryanw
- 1,819
- 5
- 24
- 39
2
votes
2 answers
Visual studio 2003 web projects
I have a requirement to work on a VS2003 web project.
I have VS2008,vs2010,vs2003 installed in my system
Other System details are
Windows Xp professional version 2 service pack 3. IIS 5.1
When i am trying to create a VS 2003 web project giving the…

SNA
- 7,528
- 12
- 44
- 60