Home All Groups Group Topic Archive Search About

don't show error windows

Author
3 Nov 2006 1:04 PM
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.

Author
3 Nov 2006 1:50 PM
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


Vicente García wrote:
Show quoteHide quote
> 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.
Author
3 Nov 2006 4:02 PM
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" <rowe_em***@yahoo.com> escribió en el mensaje
news:1162561806.222339.58740@m7g2000cwm.googlegroups.com...
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


Vicente García wrote:
Show quoteHide quote
> 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.
Author
4 Nov 2006 11:33 PM
Dylan C.
Try

'Do Whatever Here

Catch ex as Exception

End Try