Home All Groups Group Topic Archive Search About

need advices on Global Error Handling in VB.Net

Author
23 Aug 2006 8:22 PM
===Steve L.===
does anyone know any site or ariticle provides exmaple for building a
Global Error Handling Module in VB.Net? the module should be able to
1. prouduce friendly generic error msg for the users and gracefully
exit the app.
2. capture vital error info for developers (such which application,
where in the application, what type of error such as network, database
connection, VB and so on, and error details) into a sql database for
diagnosis.

also,need  good exmaples for managing application data access and
connections in VS.Net projects.

thank you

Author
24 Aug 2006 11:05 AM
Cor Ligthert [MVP]
Steve,

Is this enough to start with, Jay has been a time very intensive busy with
that.

http://groups.google.com/group/microsoft.public.dotnet.languages.vb/search?group=microsoft.public.dotnet.languages.vb&q=global+error+handling+jay&qt_g=1&searchnow=Search+this+group

I hope this helps,

Cor

Show quoteHide quote
"===Steve L.===" <steve.***@powells.com> schreef in bericht
news:1156364530.054905.307010@m73g2000cwd.googlegroups.com...
> does anyone know any site or ariticle provides exmaple for building a
> Global Error Handling Module in VB.Net? the module should be able to
> 1. prouduce friendly generic error msg for the users and gracefully
> exit the app.
> 2. capture vital error info for developers (such which application,
> where in the application, what type of error such as network, database
> connection, VB and so on, and error details) into a sql database for
> diagnosis.
>
> also,need  good exmaples for managing application data access and
> connections in VS.Net projects.
>
> thank you
>
Author
24 Aug 2006 7:49 PM
brian
<Shameless Plug>
www.bugsentry.com
</Shameless Plug>

Drop it into your code and it sends you an encrypted error report
automatically.  You still need to write the try/catch blocks, but it
handles all the reporting aspects automatically.

-Brian