Windows 98 & .NET problem

  • Thread starter Thread starter Gary van der Merwe
  • Start date Start date
G

Gary van der Merwe

Hi Kidzero

What is the Excption.

Gary
P.S. Please fix the time on you computer. Because your clock is fast, your
post remains at the top of the newsgroup.
 
kidzero said:
On some machines with windows 98 program works normaly and on some machines
with windows 98 it is not. Simply program can not start.(Exception not
handled).

You need to find out what the exception is. Ideas:

- Set up an exception handler which reports the stack trace (StackTrace
property). Use a debug build.

- Set up remote debugging, and step through the code in VS.Net to find out
where the error occurs

If you get an error before your app starts, it could because of a missing
assembly. Using any third-party libraries?

Tim
 
Unlike Java, .NET does not promise complete insulation from differences in
operating systems. There are quite a few things that you can do in Windows
2000 from .NET that are not supported in Windows 98. Some of them are
easily recognized, such as lack of support for services. Others are more
difficult to deal with - can't think of a specific one right now, but they
can get very subtle. You need stack traces. Make sure to move your Debug
file (*.PDB) over to the 98 machine. This will add the line numbers.
 
Hello,

I have a problem running my application on windows 98.
My application is written using C# . NET

On some machines with windows 98 program works normaly and on some machines
with windows 98 it is not. Simply program can not start.(Exception not
handled).
On both systems i have installed .NET 1.1 and MSDAC 2.7.
What are nesessery updates for windows 98 to run .NET application ? Or maby
something else ?
IE 6 is also installed.

Please heeeelp !
 
Thank you for answers.

Actualy o found what was wrong. In my setup project some system files were
included( my main assembly dependecies) and that caused to crash some
windows 98 machines. After i excluded system files program started to work
normaly :)

Ha about my computer clock :))
I think my clock is ok, showing Lithuania time :), but timezone was set to
US&Canada ;))))))
 
Hi Jason,

Jason Smith said:
Unlike Java, .NET does not promise complete insulation from differences in
operating systems. There are quite a few things that you can do in Windows
2000 from .NET that are not supported in Windows 98. Some of them are
easily recognized, such as lack of support for services. Others are more
difficult to deal with - can't think of a specific one right now,

FileSystemWatcher is a good example.

Cheers,
 
Back
Top