blabberer
December 11th, 2004, 03:38
you are probably working with a vb executable and you may have set a breakpoint in some place which it doesnt like so the seh trips in and produces the message
and without passing the exception to the handler it will keep on poppping up as many times as it errs
to pass the exception to the handler once olly pops it for the first time
go to debugging options (ctrl+o) --->exceptions-->add last exception-->press ok and check mark the ignore following exceptions checkbox
after that press shift +f9 if the exception is raised again olly wont pop up the message but will automatically pass the exception to the handler
but this wont guarentee that your app will run

coz the next exception may well be cannot process exception and exit
to understand how seh works you need to find some tutorials on net
jeremy gordons tut comes to mind first there are others such as owl,comrade,rose,elicz,mattpietreks tuts on seh search for them and read them before you proceed

good luck