Hello

I have net frameowrk 1.1 installed on my system but VisualStudio still
builds usng the v1.0 of the framework. I know this because I'm trying to use
the SelectedValue property on the DropDownList (ASP.NET), this is available
in 1.1 but not 1.0.

Is there any way I can uninstall 1.0?

Re: Installed v1.1 but VS still using v1.0 by Mattias

Mattias
Wed May 11 09:03:38 CDT 2005


>Is there any way I can uninstall 1.0?

Yes, but that will not fix the problem. VS2002 will only target v1.0
of the framework. If you want to work with v1.1 you should consider
upgrading to VS2003.



Mattias

--
Mattias Sjögren [MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.

Re: Installed v1.1 but VS still using v1.0 by Norman

Norman
Wed May 11 09:10:42 CDT 2005

VS.NET is kind of hard-wired to underline framework: VS.NET (2002) ->.NET
1.0; VS.NET2003->.NET 1.1 upcoming VS.NET2005->.NET 2.0. There are some
tricks to make VS.NET2002 working with .NET1.1 and you may find it on the
net.

"Naeem Sarfraz" <NaeemSarfraz@discussions.microsoft.com> wrote in message
news:D4715FCA-F5D8-4759-A92C-55E31DD29447@microsoft.com...
> Hello
>
> I have net frameowrk 1.1 installed on my system but VisualStudio still
> builds usng the v1.0 of the framework. I know this because I'm trying to
use
> the SelectedValue property on the DropDownList (ASP.NET), this is
available
> in 1.1 but not 1.0.
>
> Is there any way I can uninstall 1.0?



Re: Installed v1.1 but VS still using v1.0 by Morten

Morten
Wed May 11 09:15:23 CDT 2005

Hi Naeem,

Visual Studio .Net 2002 can't use Framework 1.1, for that you need Visual Studio .Net 2003

You can uninstall 1.0 using the Control Panel->Add/Remove Programs, but it will break Visual Studio

On Wed, 11 May 2005 15:38:06 +0200, Naeem Sarfraz"" <NaeemSarfraz@discussions.microsoft.com> wrote:

> Hello
>
> I have net frameowrk 1.1 installed on my system but VisualStudio still
> builds usng the v1.0 of the framework. I know this because I'm trying to use
> the SelectedValue property on the DropDownList (ASP.NET), this is available
> in 1.1 but not 1.0.
>
> Is there any way I can uninstall 1.0?
>



--
Happy coding!
Morten Wennevik [C# MVP]

RE: Installed v1.1 but VS still using v1.0 by NoSpamMgbworld

NoSpamMgbworld
Wed May 11 09:32:04 CDT 2005

Visual Studio 2002 uses 1.0; Visual Studio 2003 uses 1.1. You can reg hack to
get one to run the other, but it becomes extremely buggy and crashes all the
time, so it is not wise.


---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************


"Naeem Sarfraz" wrote:

> Hello
>
> I have net frameowrk 1.1 installed on my system but VisualStudio still
> builds usng the v1.0 of the framework. I know this because I'm trying to use
> the SelectedValue property on the DropDownList (ASP.NET), this is available
> in 1.1 but not 1.0.
>
> Is there any way I can uninstall 1.0?

RE: Installed v1.1 but VS still using v1.0 by NaeemSarfraz

NaeemSarfraz
Wed May 11 13:28:02 CDT 2005

Thanks for your help.

That's a shame that I can't use VS02 with framework v1.1, bad decision from
Microsoft.

"Naeem Sarfraz" wrote:

> Hello
>
> I have net frameowrk 1.1 installed on my system but VisualStudio still
> builds usng the v1.0 of the framework. I know this because I'm trying to use
> the SelectedValue property on the DropDownList (ASP.NET), this is available
> in 1.1 but not 1.0.
>
> Is there any way I can uninstall 1.0?

Re: Installed v1.1 but VS still using v1.0 by Willy

Willy
Thu May 12 04:02:15 CDT 2005


"Naeem Sarfraz" <NaeemSarfraz@discussions.microsoft.com> wrote in message
news:B581E29B-D2A4-4C61-9283-4C33C614F077@microsoft.com...
> Thanks for your help.
>
> That's a shame that I can't use VS02 with framework v1.1, bad decision
> from
> Microsoft.
>

No, it's a shame that you didn't upgrade, just blame yourself.

Willy.



Re: Installed v1.1 but VS still using v1.0 by jmaguero_vodafone

jmaguero_vodafone
Thu May 12 12:16:11 CDT 2005

Hello,

You can force your application to use .NET Framework 1.1 with a config =
file.
To develop your application to use the new classes or methods, you will =
have to use late binding or, quite better, reflection.
You may want to read the following article, which has an example of a =
config file:
Side-by-Side Execution of the .NET Framework:
http://msdn.microsoft.com/library/default.asp?url=3D/library/en-us/dnnetd=
ep/html/sidexsidenet.asp?frame=3Dtrue

One sample of using new methods is the following:
'\\\
dim mi as =
system.reflection.methodinfo=3Dgettype(application).getmethod("EnableVisu=
alStyles")
if not mi is nothing then mi.invoke(nothing,nothing)
'///

Anyway I also recommend you to upgrade to VS 2003.

Regards.

"Naeem Sarfraz" <NaeemSarfraz@discussions.microsoft.com> escribi=C3=B3 =
en el mensaje news:D4715FCA-F5D8-4759-A92C-55E31DD29447@microsoft.com...
| Hello
|=20
| I have net frameowrk 1.1 installed on my system but VisualStudio still =

| builds usng the v1.0 of the framework. I know this because I'm trying =
to use=20
| the SelectedValue property on the DropDownList (ASP.NET), this is =
available=20
| in 1.1 but not 1.0.
|=20
| Is there any way I can uninstall 1.0?