don't show error windows

  • Thread starter Vicente García
  • 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.
 
R

rowe_newsgroups

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
 
V

Vicente García

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top