Valhalla Legends Forums Archive | Visual Basic Programming | Getting errors to happen

AuthorMessageTime
FuZe
I'm using Visual Basic 6.0, and I have a problem with debugging certain parts of my code because I have a
[code] On Error Goto [/code]
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?
September 6, 2003, 9:55 PM
Adron
To cancel it:

[code]
On Error Goto 0
[/code]

To temporarily get all errors while debugging, there's a setting in the IDE - "break on all errors".
September 7, 2003, 11:13 AM
FuZe
wow i knew how to do that but i guess i just never tried that ;\
September 7, 2003, 1:58 PM

Search