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

Will .NET application run on Windows 98?

I was asked this question and seem to recall reading
somewhere that earlier Windows OS did not contain all
the .dll files required to allow .NET classes to be
implemented.
Can anyone tell me if this is the case and if so how does
one overcome?

Thanking You

Andrew
Nov 20 '05 #1
11 1209
A .net app definitely can run on win 98, 2000, xp. However, for 98 you have
to install the .net framework (dotnetfx.exe) and probably a new version of
mdac. Check msdn for exactly what is required to run it on a 98 pc.

As a point of info, however, I push all my customers to 2000 or xp, I even
push them to xp.

HTH,

Bernie Yaeger

"andrew" <an*******@discussions.microsoft.com> wrote in message
news:05****************************@phx.gbl...
I was asked this question and seem to recall reading
somewhere that earlier Windows OS did not contain all
the .dll files required to allow .NET classes to be
implemented.
Can anyone tell me if this is the case and if so how does
one overcome?

Thanking You

Andrew

Nov 20 '05 #2
Cor
Hi Andrew,

In addition to Bernies answer (it is a little bit else)

As far as I know is installing the framework for all versions same. The
oldest are NT4 with servicepack 6a and W'98.

It is written here.

http://msdn.microsoft.com/library/de...otnetfxref.asp

Cor
Nov 20 '05 #3
some field experiance ;p

if they are using nt4 do yourself a favor and make them upgrade. Yes the
framework works on nt4sp6a, but the application can show abnormal behaviour.

if you are going to deplay on win98 do a complete test of your app on a win
98 system before setting up an appointment w your customers, having to say
its working on my pc and i don't have a clue what the problem is here,
dousn't give a good impression.

eric

"Cor" <no*@non.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Hi Andrew,

In addition to Bernies answer (it is a little bit else)

As far as I know is installing the framework for all versions same. The
oldest are NT4 with servicepack 6a and W'98.

It is written here.

http://msdn.microsoft.com/library/de...otnetfxref.asp
Cor

Nov 20 '05 #4
I agree with Eric!

I had some problems with Crystal Reports, and finally it turned out that it
worked fine on W2K, XP, ... but not on Win98. So you'd better test your
application! Btw, Microsoft Virtual PC 2004 is the perfect product for doing
this, it allows you to run multiple virtal pc's (e.g W98/Pro) on your system
without screwing up your host configuration. Cool stuff!

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan
"EricJ" <ericRéMo**@ThiSomnipack.be> wrote in message
news:3f***********************@reader0.news.skynet .be...
some field experiance ;p

if they are using nt4 do yourself a favor and make them upgrade. Yes the
framework works on nt4sp6a, but the application can show abnormal behaviour.
if you are going to deplay on win98 do a complete test of your app on a win 98 system before setting up an appointment w your customers, having to say
its working on my pc and i don't have a clue what the problem is here,
dousn't give a good impression.

eric

"Cor" <no*@non.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Hi Andrew,

In addition to Bernies answer (it is a little bit else)

As far as I know is installing the framework for all versions same. The
oldest are NT4 with servicepack 6a and W'98.

It is written here.

http://msdn.microsoft.com/library/de...us/dnnetdep/ht
ml/dotnetfxref.asp

Cor


Nov 20 '05 #5
Cor
Hi Jan and Eric,

I agree full with you.
But that does not mean it is not working.
You have to be by instance also very carefully with the way you use your
screens.

Cor
Nov 20 '05 #6
* "andrew" <an*******@discussions.microsoft.com> scripsit:
I was asked this question and seem to recall reading
somewhere that earlier Windows OS did not contain all
the .dll files required to allow .NET classes to be
implemented.
Can anyone tell me if this is the case and if so how does
one overcome?


In addition to the other replies: Some classes are not supported by
Windows 98. You will be able to find out which will work on Windows 98
by checking the method's documentation (on bottom of the pages you will
find the info about supported operating systems).

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #7
Cor
Hi Andrew,

In addition to Herfrieds reply, what is for W'98 is also for ME.

Cor
In addition to the other replies: Some classes are not supported by
Windows 98. You will be able to find out which will work on Windows 98
by checking the method's documentation (on bottom of the pages you will
find the info about supported operating systems).

Nov 20 '05 #8
I agree, windows XP is the dogs bol%$cks! as far as I am concered.

OHM

=================

Bernie Yaeger wrote:
A .net app definitely can run on win 98, 2000, xp. However, for 98
you have to install the .net framework (dotnetfx.exe) and probably a
new version of mdac. Check msdn for exactly what is required to run
it on a 98 pc.

As a point of info, however, I push all my customers to 2000 or xp, I
even push them to xp.

HTH,

Bernie Yaeger

"andrew" <an*******@discussions.microsoft.com> wrote in message
news:05****************************@phx.gbl...
I was asked this question and seem to recall reading
somewhere that earlier Windows OS did not contain all
the .dll files required to allow .NET classes to be
implemented.
Can anyone tell me if this is the case and if so how does
one overcome?

Thanking You

Andrew


Regards - OHM# On**********@BTInternet.com
Nov 20 '05 #9
* "Cor" <no*@non.com> scripsit:
In addition to Herfrieds reply, what is for W'98 is also for ME.


;-)

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #10
and test test test ;)
"Cor" <no*@non.com> wrote in message
news:Ob**************@TK2MSFTNGP10.phx.gbl...
Hi Jan and Eric,

I agree full with you.
But that does not mean it is not working.
You have to be by instance also very carefully with the way you use your
screens.

Cor

Nov 20 '05 #11
Andrew,

FYI, I have run a handful of VB.NET apps on Win98 including a fair
sized WinForm client with a web service back end. The first time you
run the app you may think the computer is locked up (it takes a
loooong time to start), but after that the performance is surprisingly
responsive all things considered (meaning: not nearly as slow as I
expected)

HTH

Andrew wrote:
I was asked this question and seem to recall reading
somewhere that earlier Windows OS did not contain all
the .dll files required to allow .NET classes to be
implemented.
Can anyone tell me if this is the case and if so how does
one overcome?

Thanking You

Andrew

Nov 20 '05 #12

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

Similar topics

4
by: Newbee Adam | last post by:
will an application created in .NET run a windows 98 and 2000 machines -- Adam S
5
by: Prabhat | last post by:
Hi All, My website is hosted with the ISP and recently I have modified my Global.asa file for the ASP application. So I think we need to restart the World Wide Web Publishing Service so that...
2
by: Flo | last post by:
Hello I want to be able to show/hide an application that is running. When i am getting the handles corresponding to an MS Office application (Excel for example), it appears that i get a handle...
3
by: Gustavo L. Fabro | last post by:
Greetings! I'm testing VS 2005 Beta 2, and I've compiled a program that runs just fine on my computer (where VS is installed). I've tried to run this same program on another computer (after...
13
by: Amjad | last post by:
Hi, Is there an equivalent to the "Application.Doevents" method in modules or Windows services? I want to make a Windows service that calls a DLL. The DLL would have all my functions and it...
5
by: jacquesvdz | last post by:
Hi Hope you guys can help me with this? I live in a house with 10 people.In the beginning wehn there were only two people, I gave them my password for the use of my pc. But since I got...
8
by: Tina | last post by:
While ASP.Net is migrating toward more robust presentation by using things like AJAX I am wondering if ClickOnce will errode a lot of ASP.Net presence in Corporate Applications. I've been reading...
15
by: =?Utf-8?B?TVNU?= | last post by:
To demonstrate my problem, I have a very simple VB Windows application. It has a text box that is used to display a counter, a button to reset the counter, and a timer that increments the counter...
2
by: Learning.Net | last post by:
hi , I have a application which reads files, directory,and its version and version information is written to text file.Its working fine if files in directory are less but problem arises when no...
3
by: Dean Slindee | last post by:
Need to write a standalone application that processes data once per day. Looking for the application program types available that would satisfy these requirements: Requirements: 1. Unattended...
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
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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: 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...
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...

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.