don't show error windows

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Vicente García

    #1

    don't show error windows

    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.



  • Michael Nemtsev

    #2
    RE: don't show error windows

    You need nothing to destroy. Everything u need is to handle the base
    Exception type exception + handle unhandled exeption to catch all of them and
    manage in your own way - log for example.

    take into account that it's very important to keep each raisen excetion
    somewhere (log for example) if u don't want to show it. Because it's crucial
    information when u start debug your app

    PS: I'd recomend you to look at Microsoft Exception Block


    --
    WBR,
    Michael Nemtsev :: blog: http://spaces.live.com/laflour

    "At times one remains faithful to a cause only because its opponents do not
    cease to be insipid." (c) Friedrich Nietzsche




    "Vicente García" wrote:
    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.
    >
    >
    >
    >

    Comment

    • Vicente García

      #3
      Re: don't show error windows

      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

      "Michael Nemtsev" <nemtsev@msn.co mescribió en el mensaje
      news:8A032389-0B63-489D-8791-CC1E25518733@mi crosoft.com...
      You need nothing to destroy. Everything u need is to handle the base
      Exception type exception + handle unhandled exeption to catch all of them
      and
      manage in your own way - log for example.
      >
      take into account that it's very important to keep each raisen excetion
      somewhere (log for example) if u don't want to show it. Because it's
      crucial
      information when u start debug your app
      >
      PS: I'd recomend you to look at Microsoft Exception Block
      >
      >
      --
      WBR,
      Michael Nemtsev :: blog: http://spaces.live.com/laflour
      >
      "At times one remains faithful to a cause only because its opponents do
      not
      cease to be insipid." (c) Friedrich Nietzsche
      >
      >
      >
      >
      "Vicente García" wrote:
      >
      >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.
      >>
      >>
      >>
      >>

      Comment

      Working...