Author |
Message |
anbu #1 / 9
|
 Deploy dotnet windows application in windows 95/98
Hi, does dotnet widnows appliations support in windows 95/98 OS. tks anbu
|
Sun, 29 Aug 2004 02:08:22 GMT |
|
 |
Brian Bischo #2 / 9
|
 Deploy dotnet windows application in windows 95/98
You can deploy .NET apps to Win 98. But you can't develop with this OS. Win 95 is not supported by .NET. -- Moving from VB6 to VB.NET? It just got easier... "The .NET Languages: A Quick Translation Guide" www.bischofsystems.com/vbnet.asp
Quote: > Hi, > does dotnet widnows appliations support in windows 95/98 OS. > tks > anbu
|
Sat, 28 Aug 2004 11:41:18 GMT |
|
 |
anbu sam #3 / 9
|
 Deploy dotnet windows application in windows 95/98
tks, then how to convey vb6 project to vb.net project. without supported in windows 95. does any solution to do. tks with regards anbu *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!
|
Sat, 28 Aug 2004 13:32:14 GMT |
|
 |
Timothy Barto #4 / 9
|
 Deploy dotnet windows application in windows 95/98
Becare with 98. Some namespaces are not supported, so do extensive test on 98 before you release. I have a app that works great on win2k and higher, but 98 shows a big red x inside of a box when the form is displayed. Tim Barton
Quote: > tks, > then how to convey vb6 project to vb.net project. without supported in > windows 95. > does any solution to do. > tks > with regards > anbu > *** Sent via Developersdex http://www.developersdex.com *** > Don't just participate in USENET...get rewarded for it!
|
Sat, 28 Aug 2004 21:36:11 GMT |
|
 |
Robert Chapma #5 / 9
|
 Deploy dotnet windows application in windows 95/98
What were the namespaces that you found to be unsupported? -- Robert Chapman, MCSD Manager, Applications Development prairieFyre Software Inc. http://www.prairiefyre.com
Quote: > Becare with 98. Some namespaces are not supported, so do extensive test on > 98 before you release. I have a app that works great on win2k and higher, > but 98 shows a big red x inside of a box when the form is displayed. > Tim Barton
> > tks, > > then how to convey vb6 project to vb.net project. without supported in > > windows 95. > > does any solution to do. > > tks > > with regards > > anbu > > *** Sent via Developersdex http://www.developersdex.com *** > > Don't just participate in USENET...get rewarded for it!
|
Sat, 28 Aug 2004 22:21:36 GMT |
|
 |
Jim Barbe #6 / 9
|
 Deploy dotnet windows application in windows 95/98
PerformanceCounter() from Imports System.Diagnostics, for one...
Quote: > What were the namespaces that you found to be unsupported? > -- > Robert Chapman, MCSD > Manager, Applications Development > prairieFyre Software Inc. > http://www.prairiefyre.com
> > Becare with 98. Some namespaces are not supported, so do extensive test > on > > 98 before you release. I have a app that works great on win2k and higher, > > but 98 shows a big red x inside of a box when the form is displayed. > > Tim Barton
> > > tks, > > > then how to convey vb6 project to vb.net project. without supported in > > > windows 95. > > > does any solution to do. > > > tks > > > with regards > > > anbu > > > *** Sent via Developersdex http://www.developersdex.com *** > > > Don't just participate in USENET...get rewarded for it!
|
Tue, 31 Aug 2004 01:38:58 GMT |
|
 |
Jimco Add-in #7 / 9
|
 Deploy dotnet windows application in windows 95/98
That makes sense to me since that class is for Windows NT performance counter objects. No such object on Windows 98. -- Jim Jimco Add-ins http://www.jimcoaddins.com Add-ins and utilities for Microsoft FrontPage
Quote: > PerformanceCounter() from Imports System.Diagnostics, for one...
> > What were the namespaces that you found to be unsupported? > > -- > > Robert Chapman, MCSD > > Manager, Applications Development > > prairieFyre Software Inc. > > http://www.prairiefyre.com
> > > Becare with 98. Some namespaces are not supported, so do extensive test > > on > > > 98 before you release. I have a app that works great on win2k and > higher, > > > but 98 shows a big red x inside of a box when the form is displayed. > > > Tim Barton
> > > > tks, > > > > then how to convey vb6 project to vb.net project. without supported in > > > > windows 95. > > > > does any solution to do. > > > > tks > > > > with regards > > > > anbu > > > > *** Sent via Developersdex http://www.developersdex.com *** > > > > Don't just participate in USENET...get rewarded for it!
|
Tue, 31 Aug 2004 01:53:59 GMT |
|
 |
Robert Chapma #8 / 9
|
 Deploy dotnet windows application in windows 95/98
I would not expect that to work. -- Robert Chapman, MCSD Manager, Applications Development prairieFyre Software Inc. http://www.prairiefyre.com
Quote: > PerformanceCounter() from Imports System.Diagnostics, for one...
> > What were the namespaces that you found to be unsupported? > > -- > > Robert Chapman, MCSD > > Manager, Applications Development > > prairieFyre Software Inc. > > http://www.prairiefyre.com
> > > Becare with 98. Some namespaces are not supported, so do extensive test > > on > > > 98 before you release. I have a app that works great on win2k and > higher, > > > but 98 shows a big red x inside of a box when the form is displayed. > > > Tim Barton
> > > > tks, > > > > then how to convey vb6 project to vb.net project. without supported in > > > > windows 95. > > > > does any solution to do. > > > > tks > > > > with regards > > > > anbu > > > > *** Sent via Developersdex http://www.developersdex.com *** > > > > Don't just participate in USENET...get rewarded for it!
|
Tue, 31 Aug 2004 04:29:30 GMT |
|
 |
Jim Barbe #9 / 9
|
 Deploy dotnet windows application in windows 95/98
But the good thing is that an application that uses it still RUNS in Win98 without crashing. It doesn't display any value related to that as NT4/2000/XP does, but at least it doesn't crash...
Quote: > That makes sense to me since that class is for Windows NT performance > counter objects. No such object on Windows 98. > -- > Jim > Jimco Add-ins > http://www.jimcoaddins.com > Add-ins and utilities for Microsoft FrontPage
> > PerformanceCounter() from Imports System.Diagnostics, for one...
> > > What were the namespaces that you found to be unsupported? > > > -- > > > Robert Chapman, MCSD > > > Manager, Applications Development > > > prairieFyre Software Inc. > > > http://www.prairiefyre.com
> > > > Becare with 98. Some namespaces are not supported, so do extensive > test > > > on > > > > 98 before you release. I have a app that works great on win2k and > > higher, > > > > but 98 shows a big red x inside of a box when the form is displayed. > > > > Tim Barton
> > > > > tks, > > > > > then how to convey vb6 project to vb.net project. without supported > in > > > > > windows 95. > > > > > does any solution to do. > > > > > tks > > > > > with regards > > > > > anbu > > > > > *** Sent via Developersdex http://www.developersdex.com *** > > > > > Don't just participate in USENET...get rewarded for it!
|
Tue, 31 Aug 2004 09:53:46 GMT |
|
|