473,473 Members | 1,899 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

upgrade vs.net2000 to 2003 ?

I had create some project in .net 2000. now I will install the new version.
Anything I need to aware or be careful ??
Thanks

Nov 20 '05 #1
9 1146
You meant that you're using 2002 of course? (since VS 2000 doesn't
exist).

One thing that really irritated me was that while VS 2002 produces
code that runs on the 1.0 or 1.1 version of the framework with no
work on your part, VS 2003 makes it much harder - you need to
reproduce a pile of incomprehensible statements in a config file to
get this to work.

You might want to wait until VS 2005 to see if they fix this - there's
not much improvement overall in 2003.
Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com
Nov 20 '05 #2
Hi Agnes,

There is no much pain upgrading from 2002 to 2003, you can state it a
disadvantage that your users have to use dotNet 1.1.

In my opinion is 2003 much more robust than 2002, it has less bugs in the
IDE and the upgrade from VB6 to Net is much more complete. You can also
shorten your code a little bit. Maybe you have seen samples here which are
impossible to do with VB2002. It has as well one more control "the
folderdialog". As last the MSI from 2003 is much smaller than with 2002.
There will be more, however that I do not remember me now.

I hope this gives some ideas?

Cor
Nov 20 '05 #3
* th***********@yahoo-dot-ca.no-spam.invalid (TheNedMan) scripsit:
You meant that you're using 2002 of course? (since VS 2000 doesn't
exist).

One thing that really irritated me was that while VS 2002 produces
code that runs on the 1.0 or 1.1 version of the framework with no
work on your part, VS 2003 makes it much harder - you need to
reproduce a pile of incomprehensible statements in a config file to
get this to work.
Mhm... VS.NET 2002 will compile .NET 1.1 assemblies, so that's a big
difference. In current development, I would try to avoid to target .NET
1.0 because there is absolutely no reason to stick with .NET 1.0.
You might want to wait until VS 2005 to see if they fix this - there's
not much improvement overall in 2003.


ACK, wait if possible but be aware that there will be massive changes.

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

"TheNedMan" <th***********@yahoo-dot-ca.no-spam.invalid> ha scritto nel
messaggio news:40**********@Usenet.com...

| One thing that really irritated me was that while VS 2002 produces
| code that runs on the 1.0 or 1.1 version of the framework with no
| work on your part, VS 2003 makes it much harder - you need to
| reproduce a pile of incomprehensible statements in a config file to
| get this to work.

I know that VS2002 compile only 1.0 and with .config you can do whatever you
want.

Do you really know how to edit & compile 1.1 with VS2002 ?
Can you tell me how to do it or where to find info about that ?

Many thanks
Giuliano
Nov 20 '05 #5
Herfried,
Mhm... VS.NET 2002 will compile .NET 1.1 assemblies, so that's a big Is that a typo?

In my experience VS.NET 2002 only compiles .NET 1.0 assemblies, while VS.NET
2003 only compiles .NET 1.1 assembles.

For details of side by side & having an assembly run under a different
version of the framework see:
http://msdn.microsoft.com/library/de...dexsidenet.asp

Yes there are unsupported procedures to get VS.NET 2002 to almost create a
1.1 assembly, however in my experience it causes VS.NET 2002 to become even
more unstable then it already is...

Hope this helps
Jay

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:2j*************@uni-berlin.de... * th***********@yahoo-dot-ca.no-spam.invalid (TheNedMan) scripsit:
You meant that you're using 2002 of course? (since VS 2000 doesn't
exist).

One thing that really irritated me was that while VS 2002 produces
code that runs on the 1.0 or 1.1 version of the framework with no
work on your part, VS 2003 makes it much harder - you need to
reproduce a pile of incomprehensible statements in a config file to
get this to work.


Mhm... VS.NET 2002 will compile .NET 1.1 assemblies, so that's a big
difference. In current development, I would try to avoid to target .NET
1.0 because there is absolutely no reason to stick with .NET 1.0.
You might want to wait until VS 2005 to see if they fix this - there's
not much improvement overall in 2003.


ACK, wait if possible but be aware that there will be massive changes.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 20 '05 #6
"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> ha scritto nel
messaggio news:%2****************@TK2MSFTNGP10.phx.gbl...

[cut]

| Yes there are unsupported procedures to get VS.NET 2002 to almost create a
| 1.1 assembly, however in my experience it causes VS.NET 2002 to become
even
| more unstable then it already is...

Which procedures ? Do you have any link ?

Giuliano
Nov 20 '05 #7
Giuliano,
I use VS.NET 2003, so I don't have the link. It shows up in the general &
framwork newsgroups every once in awhile.

Rather then waste your time on finding the link I would recommend upgrading
to VS.NET 2003.

Just a thought
Jay

"Giuliano" <no******@noanswer.it> wrote in message
news:ee**************@TK2MSFTNGP11.phx.gbl...
"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> ha scritto nel
messaggio news:%2****************@TK2MSFTNGP10.phx.gbl...

[cut]

| Yes there are unsupported procedures to get VS.NET 2002 to almost create a | 1.1 assembly, however in my experience it causes VS.NET 2002 to become
even
| more unstable then it already is...

Which procedures ? Do you have any link ?

Giuliano

Nov 20 '05 #8
VS 2002 assemblies will run on 1.1. You can't use features from 1.1
since VS 2002 itself runs on 1.0, but my point was that it is
drop-dead easy to produce for any version of the framework with VS
2002 since 1.0 is forward compatible with 1.1.

Look at the documentaion for trying this with VS 2003 - if you're
comfortable with the config file gobbledeegook that you have to
include then go for it. Personally, I don't want to distribute this
sort of crap - I'll wait for 2005 (assuming Microsoft fixes it
there).
Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com
Nov 20 '05 #9
* "Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> scripsit:
Herfried,
Mhm... VS.NET 2002 will compile .NET 1.1 assemblies, so that's a big Is that a typo?


As always, it's a typo. I remember that's not the first time I pressed
"2" instead of "3" in posts about this topic :-(.
In my experience VS.NET 2002 only compiles .NET 1.0 assemblies, while VS.NET
2003 only compiles .NET 1.1 assembles.


ACK!

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

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: Dave Harney | last post by:
Hi Newsgroup, I'm currently using VS Ver 7.0.9466 with an OS of Server 2000 (domain controller) Ver 5.0.2195 (Build 2195) SP4. I have MSDN Universal and would like to upgrade my development...
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...
3
by: elaine morgan | last post by:
I have a Microsoft Office Professional & Bookshelf for Windows 95 CD. (version 7.0) This version of Office Pro includes version 7.0 of Access95. Pre installed on my new computer is, Microsoft...
47
by: ship | last post by:
Hi We need some advice: We are thinking of upgrading our Access database from Access 2000 to Access 2004. How stable is MS Office 2003? (particularly Access 2003). We are just a small...
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...
2
by: Scott R | last post by:
I have purchased the VS 2005 professional upgrade. I would like to remove VS 2003 prior to installation. If I uninstall VS 2003, how does VS 2005 know I qualify for the upgrade pricing?
0
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,...
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
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,...
1
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...
0
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...
0
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...
0
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 ...
0
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...

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.