Confirm Delete Message

  • Thread starter Thread starter Koulla
  • Start date Start date
K

Koulla

Hello,

I have a macro contains Runsql: Delete * MyTable
everytime I run that macro a confirm deletion message
appears. Is there anyway to not show this message and just
do the deletion?
I try to do this from the tools options edit/find tab
document deletions but it not works!

Thanks a lot!
 
Under that same tab there's a setting for action queries. Remove the check
from that. Another solution is to insert a line above the action in you
macro that runs this sql. Select Setwarnings from the drop-down list and
set it to No. In the line after the sql action runs do the same thing but
set the Setwarnings to Yes.
 
Back
Top