02-07-2012 07:34 PM
Good day
My program:DBNumberOfRecord() gets a nontatal runtime error when I debug it, if I press continue it gets normal work. So I think the error dialog is improper, but i cannt skip it.
Can i skip the error when debugging? thank you!
Solved! Go to Solution.
02-08-2012 12:01 AM
Provided you are sure this error is meaningless, you can skip all library errors with Run >> Break On >> Library Errors menu option
02-08-2012 02:12 AM - edited 02-08-2012 02:13 AM
During debug of an application under development it may be excessive to filter out all library error messages. In this case you can enclose your faulting instruction between a pair of SetBreakOnLibraryErrors () calls that disable and then re-enable popup error messages.
02-08-2012 02:57 AM
Thank you for your answers!
Using the function SetBreakOnLibraryErrors solved my problem properly. Thanks.