473,394 Members | 1,778 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

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 1034
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*@tiredofspam.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**************@tk2msftngp13.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**************@TK2MSFTNGP12.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**************@TK2MSFTNGP12.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**************@TK2MSFTNGP12.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.com> wrote in message
news:ev**************@TK2MSFTNGP11.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
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...
4
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...
4
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...
28
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,...
2
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...
36
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. ...
2
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...
0
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...
52
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...
6
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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...
0
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...
0
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...

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.