don't show error windows

  • Thread starter Thread starter Vicente García
  • Start date Start date
V

Vicente García

Hello all, First of all sorry for my bad English...
I am making up an application that can't show any error window (e.g. Can't
write to memory address) if any...therefore I wish destroy or manage this
type of windows..

Please, may anyone help me?
Thanks in advance...
Vicente.
 
So you want to suppress all error messages? If so you just need to
handle the errors, not "destroy" the error windows.

One way would be to write a global exception handler that would handle
all errors that aren't handled somewhere else. Then you could do what
ever you wish with these errors whether its logging them to a file, or
just dismissing them.

Thanks,

Seth Rowe
 
Many thanks!!

I have something like that. In the main method I have a exception handler
but I thought that they are some errors from the operating system, for
instance when a codec fails, that I don't manage and then the error window
could be showed anyway...a friend told me this..perhaps he was in a mistake

Thanks,
Vicente


"rowe_newsgroups" <[email protected]> escribió en el mensaje
So you want to suppress all error messages? If so you just need to
handle the errors, not "destroy" the error windows.

One way would be to write a global exception handler that would handle
all errors that aren't handled somewhere else. Then you could do what
ever you wish with these errors whether its logging them to a file, or
just dismissing them.

Thanks,

Seth Rowe
 
Back
Top