to run this line, I get too many popups :
DoCmd.OpenQuery "QryMonthyPays"
"QryMonthyPays" is a Make Table query.
...run the query....
....is about to make a table....
.....is about to delete the existing table....
...
How can I avoid all these popups ? Anything that I could change on Options?
If not, Can I replace this query with something else in VBA?
I need to find a person based on a code which user enters, ... get three parts of data from 3 different tables.
Code and name from People Table.
Business Unit and address from BU Table.
Monthly pay from Payments Table.
and shows all these on a form.
if the user has entered the wrong code gets a "Wrong Code" message.
Thanks
DoCmd.OpenQuery "QryMonthyPays"
"QryMonthyPays" is a Make Table query.
...run the query....
....is about to make a table....
.....is about to delete the existing table....
...
How can I avoid all these popups ? Anything that I could change on Options?
If not, Can I replace this query with something else in VBA?
I need to find a person based on a code which user enters, ... get three parts of data from 3 different tables.
Code and name from People Table.
Business Unit and address from BU Table.
Monthly pay from Payments Table.
and shows all these on a form.
if the user has entered the wrong code gets a "Wrong Code" message.
Thanks