473,804 Members | 2,180 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

2005 project conflicting with 2003

I have a project developed under VS2005 on one PC. If I move the exe
file and dlls to another PC which has VS2003 installed plus framework 2
When I try to run the exe (by clicking on the exe) it asks me which 2003
debugger I want to use. Whatever answer I give it does not work!
I built the exe as a "release". Can someone tell me what I am doing wrong.
Jun 20 '07 #1
4 1357
Jack Russell <ja***@norubbis h.tpg.com.auwro te in
news:#N******** ******@TK2MSFTN GP06.phx.gbl:
I have a project developed under VS2005 on one PC. If I move the exe
file and dlls to another PC which has VS2003 installed plus framework
2 When I try to run the exe (by clicking on the exe) it asks me which
2003 debugger I want to use. Whatever answer I give it does not work!
I built the exe as a "release". Can someone tell me what I am doing
wrong.
Release DLLs don't have debugging symbols, so debugging a release binary
will fail.
Jun 21 '07 #2
Spam Catcher wrote:
Jack Russell <ja***@norubbis h.tpg.com.auwro te in
news:#N******** ******@TK2MSFTN GP06.phx.gbl:

>>I have a project developed under VS2005 on one PC. If I move the exe
file and dlls to another PC which has VS2003 installed plus framework
2 When I try to run the exe (by clicking on the exe) it asks me which
2003 debugger I want to use. Whatever answer I give it does not work!
I built the exe as a "release". Can someone tell me what I am doing
wrong.


Release DLLs don't have debugging symbols, so debugging a release binary
will fail.
Sorry, can you expand that. I am not trying to debug, I just want to run it.
Jun 21 '07 #3
Jack Russell wrote:
Spam Catcher wrote:
>Jack Russell <ja***@norubbis h.tpg.com.auwro te in
news:#N******* *******@TK2MSFT NGP06.phx.gbl:
>>I have a project developed under VS2005 on one PC. If I move the exe
file and dlls to another PC which has VS2003 installed plus framework
2 When I try to run the exe (by clicking on the exe) it asks me which
2003 debugger I want to use. Whatever answer I give it does not work!
I built the exe as a "release". Can someone tell me what I am doing
wrong.

Release DLLs don't have debugging symbols, so debugging a release
binary will fail.

Sorry, can you expand that. I am not trying to debug, I just want to run
it.
Its Ok I had not copied all the dlls over. Surely .net could tell you
that was the problem as it does if the framework is not present!
Jun 21 '07 #4
Jack Russell <ja***@norubbis h.tpg.com.auwro te in
news:Oo******** ******@TK2MSFTN GP02.phx.gbl:
>Sorry, can you expand that. I am not trying to debug, I just want to
run it.
Its Ok I had not copied all the dlls over. Surely .net could tell you
that was the problem as it does if the framework is not present!
..NET probably did:
I have a project developed under VS2005 on one PC. If I move the exe
file and dlls to another PC which has VS2003 installed plus framework
2 When I try to run the exe (by clicking on the exe) it asks me which
2003 debugger I want to use. <---------
If you cancelled the debugger request, a crash message with the stack trace
would have shown up.

However, you tried to debug a release DLL with no debug symbols nothing was
debugged (probably only hex code). Are you familiar with the difference
between release and debug binaries? I can't find a good link explaining the
difference bug suffice to say debug builds contain information required for
debugging while release builds do not. Release builds also run faster than
debug builds :-)
Jun 21 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
2295
by: Andy | last post by:
Hi As I try to learn VB programing I've been playing around with sourcecode from projects hosted on sourceforge. If I open this code in VB 2005 (it is originally developed in VB 2003), it will automatically upgrade to VB 2005? /Andy
0
1711
by: Rich | last post by:
(1) Is there a better place to pose the question below? (2) I am starting to convert my enterprise solution from VS 2003 (.NET v1.1.4322) to VS 2005 Professional (.NET v2.0.50727). The entire solution uses the following technologies - Windows Server 2003 Windows Mobile 2003 Windows XP Professional SP2 Windows 2000 Professional SP4 SQL Server 2000
4
2396
by: Skc | last post by:
We have a developer who has made an application in Visual Studio 2003 and this will not work in our version of Visual Studio 2002. Error message: Solution file loading error: The selected file is not a valid Visual Studio Solution file. When we try to load a project file, we get: Unable to read the project file. The project was created with a newer
3
3044
by: Learner | last post by:
Hi there, I have one another question on VSS 2005 and VS 2003. We had few projects built in VS 2003 and we had all of those projects under the VSS 6.0 until now. But as part of our development environment up gradation our idea is slowly move few projects from VSS 6.0 to VSS 2005. As a test we did move an ASP.NET project that was built in VS 2003 project (no solution file) from VSS 6.0 to VSS 2005 and the move was successfully (not...
0
1800
by: pumaken68 | last post by:
Does anyone has experience with calling web service from pocket pc 2003 project in VS 2005 environment? I just migrated a smart device(pocket pc 2003) solution from VS 2003 to VS 2005. There are 3 projects inside solution: 1. pocket PC 2003 windows form project; 2. Business rules 3. a web service which will be used to download and upload data via wireless from/to backend database. After converted and built successfully, the web service...
4
1331
by: John Kotuby | last post by:
Hello all, I have VStudio 2005 currently installed on my workstation. However, I am collaborating on a project with an outside consultant who is using VS 2003. Every so often he sends me new or updated modules to add to the project and I will send him my updates so that we stay in synch. I tried loading the project (solution) into VS 2005 and it warned that changes would be made that would result in incomptibility with VS 2003.
9
2763
by: wandii | last post by:
Hi, I have written couple of projects which include several crystal reports in VS.net 2003 (VB.Net) and company would like to move to VS 2005. What does it take to convert to Visual Studio.Net 2005? Can the 2003 project just be opened up in 2005? Will that convert it. The interface for 2005 very different from 2003. I got the VS 2005 professional edition - can 2003 and 2005
5
1503
by: cj | last post by:
In 2003 I had Public Class Form1 Inherits System.Windows.Forms.Form In 2005 I've seen it with and without the Inherits System.Windows.Forms.Form. Is it supposed to be there? I'm wondering if in my cutting and pasting I put it there in some of my 2005 programs and it is not necessary.
3
1818
by: =?Utf-8?B?YzY3NjIyOA==?= | last post by:
Hi all, I must be out of my mind. I used visual studio .net 2003 before and I installed 2005 a while back, but seldom to use it. Recently I was required to start to learn C# asp.net. So I tried to open a web application project in 2005. but I cannot find any asp.net web application or asp.net web services project templates which I can see them in .net 2003. What's going on? did I miss anything when I installed? is there any easy way to...
0
10600
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10350
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10351
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9174
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5534
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5673
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4311
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3834
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3002
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.