Problem with Windows2000

  • Thread starter Thread starter Mizietto
  • Start date Start date
M

Mizietto

Hi guys,
i have an application that run on WinXp and Win2000.

When it run on WinXp there aren't error and it's all ok.
In Windows2000 i have this error:

"Application has generated an exception that could not be handled"

I tryed to look for information about this it but nothing to do i
can't resolve it.

Can somebody help me?

Thank you to everybody
 
I'm guessing this happens at runtime and not during debug right? If
so, is it possible for you to run in debug mode and step through the
code until you find the section thats causing the error. Or if you
can't step through, you may consider using a form of tracing to write
to a text file when certain actions occur, then use that log to see
where the problem is. Once you've found it, please post the problem
code so we can take a look at it and see if we can find the problem.

Thanks,

Seth Rowe
 
Mizietto said:
i have an application that run on WinXp and Win2000.

When it run on WinXp there aren't error and it's all ok.
In Windows2000 i have this error:

"Application has generated an exception that could not be handled"

I tryed to look for information about this it but nothing to do i
can't resolve it.

Are you sure this is the complete error message? Note that some methods
provided in the .NET Framework are not supported by Windows 2000 and thus
calling them may fail. These version restrictions are documented in the
..NET Framework documentation.
 
Back
Top