Insert new procedure with built-in error handling

  • Thread starter Thread starter Phred Bear
  • Start date Start date
P

Phred Bear

Any body know of any downloads which will create the bare bones of a new
procedure in Access 2000 but which includes simple error handling. Like, for
example, when you insert an On-Click event from the properties form but with
user defined properties.
 
No, however if you want simple error handing...create a new command
button on a form and have it do something (anything), then just copy the
EH code created by the wizard. (It'll be pretty obvious as to what the
code is.) From there its just a matter of changing the labels in the code.

On Error Goto cmdButton_onClick_Error

becomes
 
Phred Bear said:
Any body know of any downloads which will create the bare bones of a
new procedure in Access 2000 but which includes simple error
handling. Like, for example, when you insert an On-Click event from
the properties form but with user defined properties.

I think MZ-Tools may have, if not exactly what you want, at least
something very like it:

http://www.mztools.com/v3/features.htm.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top