J Jennifer Jul 15, 2008 #1 If I open a table and then the user enters some data, how do I open a query after the user closes the table?
If I open a table and then the user enters some data, how do I open a query after the user closes the table?
D Douglas J. Steele Jul 15, 2008 #2 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.
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.