Popup indicating Success

J

Jay

How could I set a popup warning to say that a query was completed (I've
disabled the Warnings to reduce the clicks required to complete an append
query).

Thanks.
 
D

Douglas J. Steele

Since execution is asynchronous, if you put a message box immediately after
where you're running the statement, it shouldn't appear until the query's
been run.
 
J

Jay

Thanks Douglas, did the trick.


Douglas J. Steele said:
Since execution is asynchronous, if you put a message box immediately after
where you're running the statement, it shouldn't appear until the query's
been run.
 
Top