RATE THIS ANSWER
0
Click to Vote:
0
0
Sounds like something within the application is trying to do something that Windows really doesn't like. The application developer would need to review the code and figure out what what it's doing wrong.
------------- kccrosser
The classic way to get this error is to implement an error handler, but in the error handler the code does something which throws a further error.
try (<something>)
catch (
<do something here that fails>
)
Any code in an error handling block needs to be "bulletproof" to avoid these kinds of errors - beware of trying to do any database statements, including rollbacks, inside an error handling block.
Last Answered:
Oct 8 2009 4:36 PM GMT by Kccrosser 
1850 pts.
Latest Contributors: Mrdenny
46795 pts.