473,394 Members | 1,726 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.

.NET 1.1 app runs on .NET 2.0?

My development machine had .NET 1.1, then it was upgraded to 2.0.

I'd like to know if PCs that ONLY have .NET 2.0 installed will run apps
developed in 1.1. I don't see why it wouldn't, but I just need to make
sure!...

Thanks!

John

Apr 13 '06 #1
7 863
"johnb41" <js********@gmail.com> wrote in message
news:11*********************@g10g2000cwb.googlegro ups.com...
My development machine had .NET 1.1, then it was upgraded to 2.0.

I'd like to know if PCs that ONLY have .NET 2.0 installed will run apps
developed in 1.1. I don't see why it wouldn't, but I just need to make
sure!...

Thanks!

John


iirc, I remember seeing a similar question the other day... was it you?
Anyway, can't find it now. I had hoped for a definitive answer.

I can't offer any "real" help (see sig). All I can suggest is... don't be
surprised if 1.1 apps won't run without 1.1 installed, regardless of any
installed libraries that may be newer (2.0). This is similar to asking if a
VB5 app will run on a system that has only the VB6 runtimes. Even though
everything's identical as far as the code/capabilities are concerned, the
dependency chain is not and it will not run (it won't even try).

fwiw, If you have Virtual PC (every developer should... for sanity's sake if
nothing else <g>) you can test this out very quickly.

How to Get Microsoft Virtual PC 2004
http://www.microsoft.com/windows/vir...y/default.mspx

I can't say enough about VPC's "coolness factor" <g> You can be running XP
with Win98 running in one window, Win2k in another, 2003 in another (and so
on) when you're done experimenting, shut VPC down and all changes you've
made to any of the OS windows are (optionally) gone for good. It's also
great for trying out shareware, etc, because the demo's won't be adding
registry keys or cluttering up Sys32 on your "real" PC.

--
Ken Halter - MS-MVP-VB (visiting from VB6 world) - http://www.vbsight.com
Please keep all discussions in the groups..
Apr 13 '06 #2
Hi John
My experience untill sofar is that they will run on a computer with only the
2.0 framework installed ( without anny problems )

however if you use a exotic class in the framework it migh be so that you
encounter problems in certain situations :-)
only way to know for sure is by testing :-)

regards

Michel Posseth [MCP]
"johnb41" <js********@gmail.com> schreef in bericht
news:11*********************@g10g2000cwb.googlegro ups.com...
My development machine had .NET 1.1, then it was upgraded to 2.0.

I'd like to know if PCs that ONLY have .NET 2.0 installed will run apps
developed in 1.1. I don't see why it wouldn't, but I just need to make
sure!...

Thanks!

John

Apr 13 '06 #3
Ken,

This should be one of the benefits above the VB4-> VB5 -> VB6 situation.
(This is not with Visual Studio Net because all the designer parts are in
that)

Unlucky enough have they in my opinion fixed some not registrated bugs and
make it therefore very unsure to use, as Michel showed as well.

Not so clever, but I think that it will be wise to wait until the next SP
and more documentation about those not registrated bugs. (I know at least
that the dataview is slightly working different, it is as dynamic in 2.0 as
it should be).

Cor
Apr 13 '06 #4
"Cor Ligthert [MVP]" <no************@planet.nl> wrote in message
news:OV**************@TK2MSFTNGP04.phx.gbl...
Ken,

This should be one of the benefits above the VB4-> VB5 -> VB6 situation.
(This is not with Visual Studio Net because all the designer parts are in
that)

Unlucky enough have they in my opinion fixed some not registrated bugs and
make it therefore very unsure to use, as Michel showed as well.

Not so clever, but I think that it will be wise to wait until the next SP
and more documentation about those not registrated bugs. (I know at least
that the dataview is slightly working different, it is as dynamic in 2.0
as it should be).

Cor


Ok... I can see this as one example of JIT working the way it should <g>

--
Ken Halter - MS-MVP-VB (visiting from VB6 world) - http://www.vbsight.com
Please keep all discussions in the groups..
Apr 13 '06 #5
The programmer can require a specific framework version, but generally speaking
1.1 apps will run fine under 2.0.

"Michel Posseth [MCP]" <MS**@posseth.com> wrote in message
news:eT**************@TK2MSFTNGP03.phx.gbl...
Hi John
My experience untill sofar is that they will run on a computer with only the
2.0 framework installed ( without anny problems )

however if you use a exotic class in the framework it migh be so that you
encounter problems in certain situations :-)
only way to know for sure is by testing :-)

regards

Michel Posseth [MCP]
"johnb41" <js********@gmail.com> schreef in bericht
news:11*********************@g10g2000cwb.googlegro ups.com...
My development machine had .NET 1.1, then it was upgraded to 2.0.

I'd like to know if PCs that ONLY have .NET 2.0 installed will run apps
developed in 1.1. I don't see why it wouldn't, but I just need to make
sure!...

Thanks!

John


Apr 13 '06 #6
"Cor Ligthert [MVP]" <no************@planet.nl> schrieb:
This should be one of the benefits above the VB4-> VB5 -> VB6 situation.
(This is not with Visual Studio Net because all the designer parts are in
that)

Unlucky enough have they in my opinion fixed some not registrated bugs and
make it therefore very unsure to use, as Michel showed as well.


I believe that there are many small changes due to bug fixes which could
cause .NET 1.1 applications not to work properly on .NET 2.0 because of
workarounds being present in the code, for example. I suggest to test the
application extensively on .NET 2.0.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Apr 13 '06 #7
I have both 1.1 frame and 2.0 frame running on my computer.

1.1 is needed for AutoDesk 2006 products
2.0 is needed of SQL Express 2005 and VB Express 2005

I'm able to run all the software (XP SP2 is the OS) and haven't seen any
problems with 1.1 and 2.0 running side by side, but I don't know if AutoCAD,
for example, will run if I uninstall 1.1.

"johnb41" <js********@gmail.com> wrote in message
news:11*********************@g10g2000cwb.googlegro ups.com...
My development machine had .NET 1.1, then it was upgraded to 2.0.

I'd like to know if PCs that ONLY have .NET 2.0 installed will run apps
developed in 1.1. I don't see why it wouldn't, but I just need to make
sure!...

Thanks!

John

Apr 14 '06 #8

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

Similar topics

7
by: CoralineSage | last post by:
Hi there, I know very little about PHP, but I was just curious to know why exactly would some PHP code run fine from the command line but not from the browser? I'm just curious. I was working...
4
by: Jacek Dziedzic | last post by:
Hi! First of all, I hope my problem is not too loosely tied to the "standard C++" that is the topic of this group. I have some code that exhibits a strange behaviour: on one computer, where I...
2
by: AG | last post by:
I am able to run a query which runs FAst in QA but slow in the application.It takes about 16 m in QA but 1000 ms on the Application.What I wanted to know is why would the query take a long time...
0
by: Roger | last post by:
I've got this small vba code Public Sub sendmail() Dim osession As Object Set osession = CreateObject("MAPI.Session") osession.logon "npescan", "", False, True, 0, False ... read stuff......
2
by: ThurstonHowl | last post by:
Hello, my task is the following: Input are tables with fields containing strings where the strings are actually delimited lists. For example, one field could contain 'AB|CD|EF|GH' I've...
4
by: sallyk57 | last post by:
I figured out how to make a coin class. But i can't figure out how to write a program to find the length of the longest run of heads in 100 flips of the coin. This is what i did so far the runs...
6
by: sethukr | last post by:
Hi everybody, While i'm compiling the following program in GCC, it gives "segmentation fault" But GDB doesn't give any "segmentation fault" What's the reason for this?? #include<stdio.h>...
3
by: rfuscjr via AccessMonster.com | last post by:
This is truly bizzare. I have a query that runs for hours in one Access db. When I import it into another Access db, it runs in minutes. I compacted and repaired the original, relinked tables...
0
by: juhisingh | last post by:
Hi All, I'm creating a windows service thats runs for every one hour. I want to use a variable in that service whose value increments for every one hour the service runs. Say first time when...
11
by: Gord | last post by:
When I open a certain report, it runs some code that generates the records that will be displayed in that report. This works fine. When I go to print preview the report it appears that the code...
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...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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.