Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: FuZe on September 06, 2003, 04:55 PM

Title: Getting errors to happen
Post by: FuZe on September 06, 2003, 04:55 PM
I'm using Visual Basic 6.0, and I have a problem with debugging certain parts of my code because I have a
On Error Goto
statement somewhere because of a certain portion of my code that requires the error checking.

Is there anyway to let the program break as it would normally would once you have an "On Error Goto" statement somewhere earlier in the module?  
Title: Re:Getting errors to happen
Post by: Adron on September 07, 2003, 06:13 AM
To cancel it:


On Error Goto 0


To temporarily get all errors while debugging, there's a setting in the IDE - "break on all errors".
Title: Re:Getting errors to happen
Post by: FuZe on September 07, 2003, 08:58 AM
wow i knew how to do that but i guess i just never tried that ;\