473,378 Members | 1,478 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,378 software developers and data experts.

Using .NET 1.1

I have been browsing around Microsoft's site trying to get answers to
the following questions:
1) If VS .NET 2002 is installed on the computer, is it possible to
install the .NET 1.1 Framework+SDK and get VS .NET 2002 to use them?
2) Are there any benefits to doing so?
3) If I have no use for J#, are there any compelling reasons to move
from VS .NET 2002 to 2003, specially if it is possible to use .NET 1.1
with VS .NET 2002?

Anthony

Nov 16 '05 #1
7 1217
Hi Anthony,
I have been browsing around Microsoft's site trying to get answers to
the following questions:
1) If VS .NET 2002 is installed on the computer, is it possible to
install the .NET 1.1 Framework+SDK and get VS .NET 2002 to use them?
No.
2) Are there any benefits to doing so? Not really, since you can't :)
3) If I have no use for J#, are there any compelling reasons to move
from VS .NET 2002 to 2003, specially if it is possible to use .NET 1.1
with VS .NET 2002?


There are quite a few. For example, VC++ is much improved and has now tons
of new support for ISO standard C++ compliance. There's also support in some
of the other products for things like mobile development, etc.

--
Tomas Restrepo
to****@mvps.org
Nov 16 '05 #2
Thanks for the response Tomas.
I have another question:
Is it at least possible to replace the .NET Framework 1.0 with the .NET
1.1 Framework (not SDK) on a machine with VS .NET 2002? I would assume
so since people talk about VS .NET 2002 and VS .NET 2003 coexisting on a
single machine, but I'm not sure.

Thanks,

Anthony

PS: It seems somehow harsh that MS already made VS .NET 2002 obsolete
one year after releasing it. What happened to good old Service Packs a
la VS 6.0?

Tomas Restrepo (MVP) wrote:
Hi Anthony,

I have been browsing around Microsoft's site trying to get answers to
the following questions:
1) If VS .NET 2002 is installed on the computer, is it possible to
install the .NET 1.1 Framework+SDK and get VS .NET 2002 to use them?

No.

2) Are there any benefits to doing so?


Not really, since you can't :)

3) If I have no use for J#, are there any compelling reasons to move
from VS .NET 2002 to 2003, specially if it is possible to use .NET 1.1
with VS .NET 2002?

There are quite a few. For example, VC++ is much improved and has now tons
of new support for ISO standard C++ compliance. There's also support in some
of the other products for things like mobile development, etc.


Nov 16 '05 #3
Anthony,
Is it at least possible to replace the .NET Framework 1.0 with the .NET
1.1 Framework (not SDK) on a machine with VS .NET 2002?
Well, that wouldn't quite work, since you need the 1.0 framework to build
applications with VS.NET 2002 ;)
I would assume
so since people talk about VS .NET 2002 and VS .NET 2003 coexisting on a
single machine, but I'm not sure.


They are built to coexist. You can have both of them installed at the same
time, and in most cases apps built with 1.0 will run agains 1.0, while those
built with 1.1 will run against 1.1 [1]. Also, both VS.NET versions coexist
on the same machine with no issues, too.
[1] minor exception is asp.net, but that's easy to arrange, too, as long as
you set things up properly.

--
Tomas Restrepo
to****@mvps.org
Nov 16 '05 #4
No, your 1.0 app will work on the 1.1 framework through a mechanism called
"fusion".

It's only for developmentt that there's a hard dependency: if you're using
VS.NET 2002, you're targeting the 1.0 runtime. If you're using VS.NET 2003
you're targeting the 1.1 framework.

-cd

Anthony Gallagher wrote:
Wow, that's a little wild. I hope they MS changes their strategy for
the future versions of the .NET Framework, or people are going to
have to
have every single version installed!
So basically, if somebody has the .NET Framework 1.1 installed on
their machine, and I give them my app written using VS .NET 2002, it
won't
work?? Why couldn't MS follow the Sun strategy with the JVM's and make
things compatible?

Anthony

Tomas Restrepo (MVP) wrote:
Anthony,

Is it at least possible to replace the .NET Framework 1.0 with the
.NET
1.1 Framework (not SDK) on a machine with VS .NET 2002?

Well, that wouldn't quite work, since you need the 1.0 framework to
build applications with VS.NET 2002 ;)

I would assume
so since people talk about VS .NET 2002 and VS .NET 2003 coexisting
on a single machine, but I'm not sure.

They are built to coexist. You can have both of them installed at
the same time, and in most cases apps built with 1.0 will run agains
1.0, while those built with 1.1 will run against 1.1 [1]. Also, both
VS.NET versions coexist on the same machine with no issues, too.
[1] minor exception is asp.net, but that's easy to arrange, too, as
long as you set things up properly.

Nov 16 '05 #5
I see. That makes more sense. Naturally an app made with VS.NET 2003
will not work on a machine with only the 1.0 framework, correct?

Anthony

Carl Daniel [VC++ MVP] wrote:
No, your 1.0 app will work on the 1.1 framework through a mechanism called
"fusion".

It's only for developmentt that there's a hard dependency: if you're using
VS.NET 2002, you're targeting the 1.0 runtime. If you're using VS.NET 2003
you're targeting the 1.1 framework.

-cd

Anthony Gallagher wrote:
Wow, that's a little wild. I hope they MS changes their strategy for
the future versions of the .NET Framework, or people are going to
have to
have every single version installed!
So basically, if somebody has the .NET Framework 1.1 installed on
their machine, and I give them my app written using VS .NET 2002, it
won't
work?? Why couldn't MS follow the Sun strategy with the JVM's and make
things compatible?

Anthony

Tomas Restrepo (MVP) wrote:
Anthony,

Is it at least possible to replace the .NET Framework 1.0 with the
.NET
1.1 Framework (not SDK) on a machine with VS .NET 2002?
Well, that wouldn't quite work, since you need the 1.0 framework to
build applications with VS.NET 2002 ;)

I would assume
so since people talk about VS .NET 2002 and VS .NET 2003 coexisting
on a single machine, but I'm not sure.
They are built to coexist. You can have both of them installed at
the same time, and in most cases apps built with 1.0 will run agains
1.0, while those built with 1.1 will run against 1.1 [1]. Also, both
VS.NET versions coexist on the same machine with no issues, too.
[1] minor exception is asp.net, but that's easy to arrange, too, as
long as you set things up properly.



Nov 16 '05 #6
Hi Anthony,
I see. That makes more sense. Naturally an app made with VS.NET 2003
will not work on a machine with only the 1.0 framework, correct?


Ahh, tricky question! Yes and no. As long as you don't use any v1.1-specific
functionality, you can add a special ssection to your app.config file and
have it run against 1.0. (see [3]) However, for MC++ apps, things are
trickier, since there was a change to fix a problem with appdomains and
statics in mixed mode assemblies (I'm hoping I'm remembering correctly), so
you actually need to compile with a special switch (/clr:initialAppDomain,
you can see more details of this here [1] and here [2]).

[1] ms-help://MS.MSDNQTR.2003FEB.1033/vccore/html/vcrefEECOMCompilation.htm
[2] http://support.microsoft.com/default...;en-us;Q309694
[3]
ms-help://MS.MSDNQTR.2003FEB.1033/cpguide/html/cpcontargetingnetframeworkver
sion.htm
--
Tomas Restrepo
to****@mvps.org
Nov 16 '05 #7
Thanks for all your help Tomas.

Anthony

Tomas Restrepo (MVP) wrote:
Hi Anthony,

I see. That makes more sense. Naturally an app made with VS.NET 2003
will not work on a machine with only the 1.0 framework, correct?

Ahh, tricky question! Yes and no. As long as you don't use any v1.1-specific
functionality, you can add a special ssection to your app.config file and
have it run against 1.0. (see [3]) However, for MC++ apps, things are
trickier, since there was a change to fix a problem with appdomains and
statics in mixed mode assemblies (I'm hoping I'm remembering correctly), so
you actually need to compile with a special switch (/clr:initialAppDomain,
you can see more details of this here [1] and here [2]).

[1] ms-help://MS.MSDNQTR.2003FEB.1033/vccore/html/vcrefEECOMCompilation.htm
[2] http://support.microsoft.com/default...;en-us;Q309694
[3]
ms-help://MS.MSDNQTR.2003FEB.1033/cpguide/html/cpcontargetingnetframeworkver
sion.htm


Nov 16 '05 #8

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

Similar topics

5
by: Enos Meroka | last post by:
Hallo, I am a student doing my project in the university.. I have been trying to compile the program using HP -UX aCC compiler, however I keep on getting the following errors. ...
3
by: Mike L | last post by:
Should the command call "using" be before or after my namespace? **AFTER** namespace DataGridBrowser { using System; using System.Drawing; using System.Drawing.Drawing2D; using...
3
by: xzzy | last post by:
I was wondering why we have to have using System.Data using System.Configuration using etc.... why are they not all lumped into one 'using'? In other words, is there a best way to use...
14
by: pmud | last post by:
Hi, I need to use an Excel Sheet in ASP.NET application so that the users can enter (copy, paste ) large number of rows in this Excel Sheet. Also, Whatever the USER ENETRS needs to go to the...
8
by: acb | last post by:
Hi, I wrote a DLL Component (using Visual Studio 2005) and managed to include it into a C# Console application. I am now trying to include this component into a Web project. I copy the DLL...
0
by: Metal2You | last post by:
I'm working on an ASP.NET 2.0 application in Visual Studio 2005 that accesses a Sybase database back end. We're using Sybase SQL Anywhere 9.0.2.3228. I have installed and registered the Sybase...
10
by: mg | last post by:
I'm migrating from VB6 and have a question about using 'Using' and the best way to use it. Here is a example of a small bit of code: dbConx("open") Using CN Dim CMD As New OleDbCommand(sSQL,...
0
by: Eugene Anthony | last post by:
The problem with my coding is that despite removing the records stored in the array list, the rptPages repeater control is still visible. The rptPages repeater control displayes the navigation...
3
by: JDeats | last post by:
I have some .NET 1.1 code that utilizes this technique for encrypting and decrypting a file. http://support.microsoft.com/kb/307010 In .NET 2.0 this approach is not fully supported (a .NET 2.0...
6
by: =?Utf-8?B?U2hhd24gU2VzbmE=?= | last post by:
Greetings! I was researching AJAX to provide a solution to displaying status messages while a long process executed. I found several examples online and was able to use their code to get a quick...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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...

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.