need advices on Global Error Handling in VB.Net

  • Thread starter Thread starter ===Steve L.===
  • Start date Start date
S

===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
 
<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
 
Back
Top