.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Error Trapping
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
In VB6 I used to use
On Error GoTo My_Error
'Code
On Error GoTo 0
Exit Sub
My_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") on line " & Erl & " in procedure MyProcedure of Module MyModule"
By using this in VB.net it the error is skipped and it jumps to the error routine. Easily added using MZ tools.
The same code doesn't report what line but at least reports an error.
Using the Try, Catch & Finally method often just crates a fatal error and I have to step through code trying to work out what the problem is.
A big problem is that I have spent a long time creating an application with several reactors. I'm not sure if I will ever figure out why it is creating fatal errors.
Is there some reading material that can help me trap errors or work out if I have not disposed of something that should have been?
Re: Error Trapping
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I've had some fatal errors from using Try/Catch ex as Exception/End Try as well. However I was able to trap them using the following:
Try
'code.....
Catch
'error message
End Try.
It obviously doesn't provide you with an exception that you can then report to your user, but you should be able to figure out what the error is while debugging and then tell your code to catch it.
-Mark
Re: Error Trapping
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
This link may help you to understand exceptions: http://msdn.microsoft.com/en-us/library/5b2yeyab(v
Gaston Nunez
Re: Error Trapping
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Try in the Visual studio to go to Project --> Properties-->Compile Tab
and set Option Strict to On, then hit F5, you will be see many possible
bad lines in your code before you run it, then revert back Option Stict to Off
and run again
Maybe it will be usefull for you
~'J'~
C6309D9E0751D165D0934D0621DFF27919
Re: Error Trapping
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
It most often never makes it to the catch part . The fatal error is initiated on the bad bit of code.
Something I will have to accept it seems.
That option strict generates a mass of errors. I'll see if I can spot anything unusual there.
Thanks all.
Re: Error Trapping
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
If you're importing Autodesk.AutoCAD.Runtime and you do a "Catch ex as exception" you're only catching the Autodesk.AutoCAD.Runtime exceptions so if you get a System.Exception it will error and not hit the catch.
The Runtime.exception inherits System.exception so catching System.exceptions should get them all.

