473,587 Members | 2,550 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VS 2003 Upgrade

Liz
I'm going to be installing VS 2003 over my existing VS; are there any
factors/considerations/precautions I should be aware of before doing so ?
will the older VS be removed automatically or is it an option ?

Thanks ...

btw, I'm also going to install Office 2003; anyone know if my Outlook email
accounts and other preferences/settings/etc will be preserved ? I can't
seem to find an answer to this anywhere even though it seems an easy
question ...


Nov 20 '05 #1
8 1040
Liz wrote:
I'm going to be installing VS 2003 over my existing VS; are there any
factors/considerations/precautions I should be aware of before doing
so ? will the older VS be removed automatically or is it an option ?
You can't upgrade to VS.NET 2003 in that sence. VS.NET 2003 will be
installed side-by-side with your existing version. You can continue to use
the existing version, or uninstall it at your leisure. If the existing
version is VS.NET 2002, VS.NET 2003 will ask you if you want to migrate
settings at first start-up. It can't migrate settings from VS6.
If you're not going to continue running the old version, I recommend
uninstalling it before installing VS.NET 2003. That way you can be certain
uninstalling the old version doesn't mess up file associations.
btw, I'm also going to install Office 2003; anyone know if my Outlook
email accounts and other preferences/settings/etc will be preserved ?
I can't seem to find an answer to this anywhere even though it seems
an easy question ...


All Office applications, with the exception of Outlook, can run side-by-side
with their older versions. Only in the case of Outlook it can only be
installed if the old version is removed. The Office 2003 installer will take
care of removing the older Outlook version, and migrating the settings, so
all should be safe.

--
Sven Groot

http://unforgiven.bloghorn.com

Nov 20 '05 #2
* "Liz" <li*@tiredofspa m.com> scripsit:
I'm going to be installing VS 2003 over my existing VS; are there any
factors/considerations/precautions I should be aware of before doing so ?
will the older VS be removed automatically or is it an option ?
VS 2002 and VS 2003 can run on the same machine without problems.
btw, I'm also going to install Office 2003; anyone know if my Outlook email
accounts and other preferences/settings/etc will be preserved ?


I assume that they will be preserved, but no guarantee.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #3
Liz

"Sven Groot" <sv*******@gmx. net> wrote in message
news:OS******** ******@tk2msftn gp13.phx.gbl...
You can't upgrade to VS.NET 2003 in that sence. VS.NET 2003 will be
installed side-by-side with your existing version. You can continue to use
the existing version, or uninstall it at your leisure. If the existing
version is VS.NET 2002, VS.NET 2003 will ask you if you want to migrate
settings at first start-up. It can't migrate settings from VS6.
If you're not going to continue running the old version, I recommend
uninstalling it before installing VS.NET 2003. That way you can be certain
uninstalling the old version doesn't mess up file associations.
it's 7.0.9466 that's on there now ... My preference is to upgrade, retain
settings and get rid of 2002; it sounds like I should install '03 and then
uninstall '02, no ?
from Herfried K. Wagner:

VS 2002 and VS 2003 can run on the same machine without problems.


is there any compelling reason to run both ?

thanks, guys ....


Nov 20 '05 #4
Liz wrote:
VS 2002 and VS 2003 can run on the same machine without problems.


is there any compelling reason to run both ?


Only if you're not willing to convert all your projects (maybe because other
members of the development team are using 2002), or have a pressing need to
develop applications for the .Net Framework 1.0 (2003 can only develop 1.1).
I myself ran 2002 and 2003 side-by-side for a while when I still had a few
web applications running at a host that at the time hadn't updated to
ASP.NET 1.1 yet. After they updated, I've used 2003 exclusively to great
satisfaction.

--
Sven Groot

http://unforgiven.bloghorn.com

Nov 20 '05 #5
Liz

"Sven Groot" <sv*******@gmx. net> wrote in message
news:#f******** ******@TK2MSFTN GP12.phx.gbl...
Liz wrote:
VS 2002 and VS 2003 can run on the same machine without problems.
is there any compelling reason to run both ?


Only if you're not willing to convert all your projects (maybe because

other members of the development team are using 2002), or have a pressing need to develop applications for the .Net Framework 1.0 (2003 can only develop 1.1). I myself ran 2002 and 2003 side-by-side for a while when I still had a few
web applications running at a host that at the time hadn't updated to
ASP.NET 1.1 yet. After they updated, I've used 2003 exclusively to great
satisfaction.


How much conversion is there likely to be ? I guess I was working on the
assumption that 2003 was pretty much a superset of 2002; not so ? Your
point about hosts not running 1.1 is well-taken ....

thanks ...


Nov 20 '05 #6
In article <#J************ **@TK2MSFTNGP10 .phx.gbl>, Liz wrote:

"Sven Groot" <sv*******@gmx. net> wrote in message
news:#f******** ******@TK2MSFTN GP12.phx.gbl...
Liz wrote:
>> VS 2002 and VS 2003 can run on the same machine without problems.
>
> is there any compelling reason to run both ?


Only if you're not willing to convert all your projects (maybe because

other
members of the development team are using 2002), or have a pressing need

to
develop applications for the .Net Framework 1.0 (2003 can only develop

1.1).
I myself ran 2002 and 2003 side-by-side for a while when I still had a few
web applications running at a host that at the time hadn't updated to
ASP.NET 1.1 yet. After they updated, I've used 2003 exclusively to great
satisfaction.


How much conversion is there likely to be ? I guess I was working on the
assumption that 2003 was pretty much a superset of 2002; not so ? Your
point about hosts not running 1.1 is well-taken ....

thanks ...


Code wise - probably none (there were a few breaking changes going from
1.0 to 1.1). It's just that 2003 "upgrades" the project
files which means you can't open your projects in 2002 once you've
upgraded them to 2003.

You can still target the 1.0 runtime from 2003 - it's just not using it
like you would expect :) When you tell set the project option to
support the 1.0 runtime, the project is still compiled using 1.1. All
it does is make an app.config setting that tells the compiled
application to allow it's self to run on the 1.0 runtime. What that
means is that you have to be a little bit careful about what
classes/methods you use if you decide to use 2003 to compile apps that
need to target the 1.0 runtime. Things change somewhat between
versions, new classes, etc. If you use a 1.1 specific class, then it is
going to blow up when you attempt to run it on the 1.0 runtime.

--
Tom Shelton [MVP]
Nov 20 '05 #7
Liz wrote:
"Sven Groot" <sv*******@gmx. net> wrote in message
news:#f******** ******@TK2MSFTN GP12.phx.gbl...
Liz wrote:
VS 2002 and VS 2003 can run on the same machine without problems.

is there any compelling reason to run both ?


Only if you're not willing to convert all your projects (maybe
because other members of the development team are using 2002), or
have a pressing need to develop applications for the .Net Framework
1.0 (2003 can only develop 1.1). I myself ran 2002 and 2003
side-by-side for a while when I still had a few web applications
running at a host that at the time hadn't updated to ASP.NET 1.1
yet. After they updated, I've used 2003 exclusively to great
satisfaction.


How much conversion is there likely to be ? I guess I was working on
the assumption that 2003 was pretty much a superset of 2002; not so
?


With conversion I mainly meant project format. VS.NET 2002 can't open
projects from 2003, which is a problem if you're working in a team and
you're the only one that's using 2003.

There are also some breaking changes in the Framework, which are listed
here:
http://www.gotdotnet.com/team/changeinfo/default.aspx
This can also be a reason why you don't want to move an application forward
to 1.1 yet.

--
Sven Groot

http://unforgiven.bloghorn.com

Nov 20 '05 #8
Liz

"Tom Shelton" <to*@mtogden.co m> wrote in message
news:ev******** ******@TK2MSFTN GP11.phx.gbl...
Code wise - probably none (there were a few breaking changes going from
1.0 to 1.1). It's just that 2003 "upgrades" the project
files which means you can't open your projects in 2002 once you've
upgraded them to 2003.

You can still target the 1.0 runtime from 2003 - it's just not using it
like you would expect :) When you tell set the project option to
support the 1.0 runtime, the project is still compiled using 1.1. All
it does is make an app.config setting that tells the compiled
application to allow it's self to run on the 1.0 runtime. What that
means is that you have to be a little bit careful about what
classes/methods you use if you decide to use 2003 to compile apps that
need to target the 1.0 runtime. Things change somewhat between
versions, new classes, etc. If you use a 1.1 specific class, then it is
going to blow up when you attempt to run it on the 1.0 runtime.

think I got the drift ... Thanks Tom, Sven, Herfried ....


Nov 20 '05 #9

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

Similar topics

2
1854
by: Tappy Tibbons | last post by:
Have many of you upgraded to VS 2003? We have been using Visual Studio 2002, and are somewhat satisfied, except for the following areas: Speed - VS2002 apps are dead dog slow to start up, and slow the first time a form loads. Has this been addressed? We have been all through the "fixes" that supposedly speed up things in 2002, but they do...
4
1344
by: Mike Busch | last post by:
I an taking a course in Visual Basic .Net. At the college we attend, they have VB .Net 2002 on all the PC's in the class room and the lab. We receive from Microsoft and the school a copy of VB .Net 2003 to install on our home computers. I don't hav eto time to get to the college to do my work in the Lab. Is there any way to create a VB .Net...
4
2294
by: Daisy | last post by:
Hi, Can I install Visual Studio .NET 2003 on Windows 2000 with Service Pack 4 machine? Or Will I have to upgrade to a newer version of the MS Windows operating system. Please provide the information. Thanks
28
2629
by: Neil Ginsberg | last post by:
I have a client who is using Access 2002/2000 (the database itself is written in 2000), and is considering migrating to Access 2003. Any recommendations on whether Access 2003 is worth the migrate, or should he stick with 2002? Thanks! Neil
2
1768
by: Kelt | last post by:
I have a user who currently has Access 97 installed on her PC. She has purchased a new PC and would like to have Access installed on it. She would like to upgrade her current Access to Access 2003. When installing the Access 2003 upgrade on the new PC, do I have to install Access 97 first, then run the Access 2003 upgrade CD? And if so,...
36
2531
by: Tim | last post by:
Is there a way to upgrade from Visual C++ Net 2002 to Visual C++ Net 2003? The 2002 version does not provide a Windows Forms Designer. I can't find any upgrade package on Microsoft's website. Thanks, Tim
2
3020
by: Herfried K. Wagner [MVP] | last post by:
Hello, There are often questions in this newsgroup posted by VS.NET 2002 users. VS.NET 2002 is "out of date", its successor is VS.NET 2003. There is a special ("cheap") upgrade offer available for $29 US. This offer is open only until September 30, 2003. You will get more information about this offer here: Visual Studio .NET 2003...
0
1019
by: Roger | last post by:
Hi All, I bought a Toshiba e755 PPC 2002 in Asia, unfortunately the 2003 upgrade was not available in Asia, I was living in Taiwan and tried to get Toshiba to ship a copy from the USA - I cannot even begin to explain how much time and trouble this caused me - and in the end got nothing (but mad), anyway, knowing I would be moving to the USA I...
52
9949
by: Neil | last post by:
We are running an Access 2000 MDB with a SQL 7 back end. Our network guy is upgrading to Windows Server 2003 and wants to upgrade Office and SQL Server at the same time. We're moving to SQL Server 2005, and, since he already has licenses for Office Pro 2002, he wants to upgrade to that. I've been saying that we need to upgrade to Access...
6
2786
by: Donald Grove | last post by:
I do programming in Access 2000 and 2003. I don't have a copy of 2003 myself, though. I have read about the adp software that comes with Access 2003, that converts an application to an access front end with a SQL server backend. It sounds like a good way for me to begin to learn about SQL server. I have thought about just shelling out...
0
7920
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7849
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8347
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...
0
8220
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6626
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...
0
5394
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3844
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...
0
3879
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1189
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...

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.