action queries confirmation

action queries confirmation

am 23.12.2007 18:46:12 von u18648

I just installed MS Access 2007. Is there any way to turn off the
confirmation of action queries in 2007 ?

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/databases-ms-ac cess/200712/1

Re: action queries confirmation

am 23.12.2007 20:02:01 von Tom van Stiphout

On Sun, 23 Dec 2007 17:46:12 GMT, "destinman via AccessMonster.com"
wrote:

Check out:
DoCmd.SetWarnings

-Tom.


>I just installed MS Access 2007. Is there any way to turn off the
>confirmation of action queries in 2007 ?

Re: action queries confirmation

am 23.12.2007 23:46:28 von terry.statham

On Dec 23, 7:02=A0pm, Tom van Stiphout wrote:
> On Sun, 23 Dec 2007 17:46:12 GMT, "destinman via AccessMonster.com"
>
> wrote:
>
> Check out:
> DoCmd.SetWarnings
>
> -Tom.
>
>
>
> >I just installed MS Access 2007. =A0Is there any way to turn off the
> >confirmation of action queries in 2007 ?- Hide quoted text -
>
> - Show quoted text -

Offioce Button > Access Options > Advanced > Untick "Confirm Action
Queries"

Re: action queries confirmation

am 24.12.2007 01:38:51 von Tony Toews

"destinman via AccessMonster.com" wrote:

>I just installed MS Access 2007. Is there any way to turn off the
>confirmation of action queries in 2007 ?

Inside macros or code?

If VBA code I prefer, if DAO, to use Currentdb.Execute strSQL,dbfailonerror command
instead of docmd.runsql. For ADO use CurrentProject.Connection.Execute strCommand,
lngRecordsAffected, adCmdText

If you're going to use docmd.setwarnings make very sure you put the True statement in
any error handling code as well. Otherwise weird things may happen later on
especially while you are working on the app. For example you will no longer get the
"Do you wish to save your changes" message if you close an object. This may mean
that unwanted changes, deletions or additions will be saved to your MDB.

Also performance can be significantly different between the two methods. One posting
stated currentdb.execute took two seconds while docmd.runsql took eight seconds. As
always YMMV.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/

Re: action queries confirmation

am 24.12.2007 02:11:26 von Allen Browne

For more info on Tony's suggestion, see:
Action queries: suppressing dialogs, while knowing results
at:
http://allenbrowne.com/ser-60.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Tony Toews [MVP]" wrote in message
news:tsvtm3la0ebkf8dvbrk383o4bdb91cpgqg@4ax.com...
> "destinman via AccessMonster.com" wrote:
>
>>I just installed MS Access 2007. Is there any way to turn off the
>>confirmation of action queries in 2007 ?
>
> Inside macros or code?
>
> If VBA code I prefer, if DAO, to use Currentdb.Execute
> strSQL,dbfailonerror command
> instead of docmd.runsql. For ADO use CurrentProject.Connection.Execute
> strCommand,
> lngRecordsAffected, adCmdText
>
> If you're going to use docmd.setwarnings make very sure you put the True
> statement in
> any error handling code as well. Otherwise weird things may happen later
> on
> especially while you are working on the app. For example you will no
> longer get the
> "Do you wish to save your changes" message if you close an object. This
> may mean
> that unwanted changes, deletions or additions will be saved to your MDB.
>
> Also performance can be significantly different between the two methods.
> One posting
> stated currentdb.execute took two seconds while docmd.runsql took eight
> seconds. As
> always YMMV.
>
> Tony
> --
> Tony Toews, Microsoft Access MVP
> Please respond only in the newsgroups so that others can
> read the entire thread of messages.
> Microsoft Access Links, Hints, Tips & Accounting Systems at
> http://www.granite.ab.ca/accsmstr.htm
> Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/