Jason Gyetko said:
Thanks, do you know if there is a way to put error handling that
occurs on table access rather than by individual procedure or at least
a way to call a function on table access?
No, that's not something you can really do in Access. I can think of a
possible workaround for calling a function on table access. It would be
possible to create a query that selects all fields from the table, and has a
calculated field that calls a VBA function. If you use that query in place
of the table, wherever you might refer to the table, then the function would
be called when the table is queried. You could set it up so that the
function is called once for every record, or only once for the whole table.
I haven't tried this, so I don't know what quirks might be encountered.
It's an unusual request, so I would hope you have a very good reason for
wanting to explore these uncharted waters.