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?