Reputation: 70307
I'm pretty sure the answer is no, but does anyone know of a way to create a global exception handler for VB 6?
Upvotes: 3
Views: 446
Reputation: 53593
You're right, the answer is no.
As I suspect you suspect, I'm afraid you've got to use an On Error
statement in each of your procedures and call your global error handler from there.
Upvotes: 4