How can I disable the dialogue boxes in MS Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi There,
I was desiging a report which contain generating report from a table which
is being dynamically fed while running the code and in this process i first
clear the data in it and then insert the data from the master table.
But while deleting and inserting the Access dialogue box is coming warning
about the deletion and Insertion.

Is there any way to disable the dialogue box from MS Access?

Any help in this regard is highly appreciated.

Thanks,
A M
 
You can use code before your action queries like:

DoCmd.SetWarnings False

Then set warnings back to True when finished.
 
Back
Top