Open query after close table

  • Thread starter Thread starter Jennifer
  • Start date Start date
J

Jennifer

If I open a table and then the user enters some data, how do I open a query
after the user closes the table?
 
You shouldn't be working directly with tables. You should always use a form.
You can then put code in the form's Unload event.

Tables don't have events, so it's not possible to do the equivalent with a
table.
 
Back
Top