Deploy dotnet windows application in windows 95/98 
Author Message
 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  
 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  
 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  
 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  
 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  
 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  
 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  
 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  
 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  
 
 [ 9 post ] 

 Relevant Pages 

1. Application runs with Windows 95/NT, but doesn't work with Windows 98

2. Vb5 in Windows 95 or Windows 98

3. 2-digit Date Window in Windows 95/98

4. VB applications on Windows 95 & 98

5. Printing in Windows 95 vs. Windows 98

6. Transparent windows in windows 95/98 how to ?

7. shutdown windows nt worstation or windows 95/98

8. API Calls in Windows NT as well as Windows 95/98

9. Help API GetCaretPos in window running a Dos App shelled from windows 95/98

10. Windows NT Users form a Windows 95 / 98 Client

11. Transparent windows in windows 95/98 how to ?

12. How to get Access 97 work on Windows 95 and 98

 

 
Powered by phpBB® Forum Software