Messages

  • Thread starter Thread starter =?ISO-8859-1?Q?=D8ystein_Sund?=
  • Start date Start date
?

=?ISO-8859-1?Q?=D8ystein_Sund?=

Hello!

I've made a form that is running a query by pushing a button. This is an
insert query. When the user pushes this button a message appears that
sais: You are now going to add a row (translated from Norwegian to
English). How do I get rid of these messages?

Any help would be appreciated!


Øystein Sund
 
There is a property within options

Click on the Edit/Find tab and look for a group called Confirm. There is a
setting in there for Action Queries.
 
Hi Øystein,

at the start of the procedure include the line:

DoCmd.SetWarnings False

and then turn them back on again after you have inserted
the records with:

DoCmd.SetWarnings True

hth

chas
 
Back
Top