Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Better question - how do I turn off Debugging Errors in Forms?

Status
Not open for further replies.

tyleri

Programmer
Jan 2, 2001
173
US
How can I turn off the debugging error messages in my form? It functions how I want it to when I click "End"

 
Let me get more specific: I want to disable error messages having to do with teh Debugging error message.

My form functions perfectly after I click the "End" option.
 
Let me try to take a stab at a potential solution.

If the procedure in code (for example, behind a button) has vBA-generated error handling, you could always just comment out the "MsgBox Err.Description" line like so:

Err_cmdNewDocType_Click:
'Skip this line MsgBox Err.Description
Resume Exit_cmdNewDocType_Click

Hopefully that sends you in the right direction. -Matt
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top