N Neil Nov 1, 2007 #1 Does anyone have any code for setting the VBA option to "Break on Unhandled Errors" (Access 2000). Thanks! Neil
Does anyone have any code for setting the VBA option to "Break on Unhandled Errors" (Access 2000). Thanks! Neil
S Stuart McCall Nov 1, 2007 #3 Neil said: Does anyone have any code for setting the VBA option to "Break on Unhandled Errors" (Access 2000). Thanks! Neil Click to expand... Application.SetOption "Error Trapping", 2 0 = Break on all errors 1 = Break in class module 2 = Break on unhandled errors
Neil said: Does anyone have any code for setting the VBA option to "Break on Unhandled Errors" (Access 2000). Thanks! Neil Click to expand... Application.SetOption "Error Trapping", 2 0 = Break on all errors 1 = Break in class module 2 = Break on unhandled errors
N Neil Nov 1, 2007 #5 Thanks, Stuart! Stuart McCall said: Application.SetOption "Error Trapping", 2 0 = Break on all errors 1 = Break in class module 2 = Break on unhandled errors Click to expand...
Thanks, Stuart! Stuart McCall said: Application.SetOption "Error Trapping", 2 0 = Break on all errors 1 = Break in class module 2 = Break on unhandled errors Click to expand...
T tina Nov 2, 2007 #6 you're welcome Neil said: Well, I feel pretty dumb. Forgot about that. Thanks! Click to expand...