• Welcome to Valhalla Legends Archive.
 

Getting errors to happen

Started by FuZe, September 06, 2003, 04:55 PM

Previous topic - Next topic

FuZe

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?  

Adron

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".

FuZe

wow i knew how to do that but i guess i just never tried that ;\