PC Review


Reply
Thread Tools Rate Thread

Auto Save Everything in Access

 
 
=?Utf-8?B?QWNjZXNzSGVscA==?=
Guest
Posts: n/a
 
      11th Jul 2007
Hello all,

For some reason, my Access database database does not prompt me any messages
when I run my Append or Update query.

Has anyone had this kind of experience? How can I make it to prompt me again?

Thanks.
 
Reply With Quote
 
 
 
 
Jeff Boyce
Guest
Posts: n/a
 
      11th Jul 2007
It sounds like the SetWarnings has been turned off.

You can create a small, simple macro in which you turn the SetWarnings to
ON.

Regards

Jeff Boyce
Microsoft Office/Access MVP

"AccessHelp" <(E-Mail Removed)> wrote in message
news:22FFE177-89BE-48EA-9ACA-(E-Mail Removed)...
> Hello all,
>
> For some reason, my Access database database does not prompt me any
> messages
> when I run my Append or Update query.
>
> Has anyone had this kind of experience? How can I make it to prompt me
> again?
>
> Thanks.



 
Reply With Quote
 
=?Utf-8?B?Q2hlZXNlX3doaXo=?=
Guest
Posts: n/a
 
      11th Jul 2007
Hi AH,

In 2003 (at least), you can go to Tools>Options>Edit/Find and look under
'confirm' and there is a place for 'action queries'. Check that to confirm
before running action queries.

Hope that helps,
CW

"AccessHelp" wrote:

> Hello all,
>
> For some reason, my Access database database does not prompt me any messages
> when I run my Append or Update query.
>
> Has anyone had this kind of experience? How can I make it to prompt me again?
>
> Thanks.

 
Reply With Quote
 
=?Utf-8?B?QWNjZXNzSGVscA==?=
Guest
Posts: n/a
 
      11th Jul 2007
Hi Cheese_whiz,

Thanks for the response. I checked the Confirm section of Edit/Find, and
"Record Changes", "Document Deletions" and "Action Queries" boxes are
checked. Is there anywhere in Access to turn it back on? Now, even when I
close the forms, it does not prompt me to save them.

Thanks.

"Cheese_whiz" wrote:

> Hi AH,
>
> In 2003 (at least), you can go to Tools>Options>Edit/Find and look under
> 'confirm' and there is a place for 'action queries'. Check that to confirm
> before running action queries.
>
> Hope that helps,
> CW
>
> "AccessHelp" wrote:
>
> > Hello all,
> >
> > For some reason, my Access database database does not prompt me any messages
> > when I run my Append or Update query.
> >
> > Has anyone had this kind of experience? How can I make it to prompt me again?
> >
> > Thanks.

 
Reply With Quote
 
=?Utf-8?B?QWNjZXNzSGVscA==?=
Guest
Posts: n/a
 
      11th Jul 2007
Hi Jeff,

Thanks for your response. I do have the SetWarnings turns off in my macros.
However, I don't think it should affect when I run the query directly. In
addition, Access does not prompt me to save the forms when I close them.

Thanks.

"Jeff Boyce" wrote:

> It sounds like the SetWarnings has been turned off.
>
> You can create a small, simple macro in which you turn the SetWarnings to
> ON.
>
> Regards
>
> Jeff Boyce
> Microsoft Office/Access MVP
>
> "AccessHelp" <(E-Mail Removed)> wrote in message
> news:22FFE177-89BE-48EA-9ACA-(E-Mail Removed)...
> > Hello all,
> >
> > For some reason, my Access database database does not prompt me any
> > messages
> > when I run my Append or Update query.
> >
> > Has anyone had this kind of experience? How can I make it to prompt me
> > again?
> >
> > Thanks.

>
>
>

 
Reply With Quote
 
Jeff Boyce
Guest
Posts: n/a
 
      11th Jul 2007
I've noticed that when I turn the warnings off, they're off. Why do you
think that turning them off "in your macros" wouldn't turn them off
everywhere?

Regards

Jeff Boyce
Microsoft Office/Access MVP

"AccessHelp" <(E-Mail Removed)> wrote in message
news:74F1C513-B72A-49EC-88F1-(E-Mail Removed)...
> Hi Jeff,
>
> Thanks for your response. I do have the SetWarnings turns off in my
> macros.
> However, I don't think it should affect when I run the query directly. In
> addition, Access does not prompt me to save the forms when I close them.
>
> Thanks.
>
> "Jeff Boyce" wrote:
>
>> It sounds like the SetWarnings has been turned off.
>>
>> You can create a small, simple macro in which you turn the SetWarnings to
>> ON.
>>
>> Regards
>>
>> Jeff Boyce
>> Microsoft Office/Access MVP
>>
>> "AccessHelp" <(E-Mail Removed)> wrote in message
>> news:22FFE177-89BE-48EA-9ACA-(E-Mail Removed)...
>> > Hello all,
>> >
>> > For some reason, my Access database database does not prompt me any
>> > messages
>> > when I run my Append or Update query.
>> >
>> > Has anyone had this kind of experience? How can I make it to prompt me
>> > again?
>> >
>> > Thanks.

>>
>>
>>



 
Reply With Quote
 
Larry Daugherty
Guest
Posts: n/a
 
      12th Jul 2007
The "prudential rule of housekeeping" applies: "If you change the
setting of a global attribute within a procedure for use just within
that procedure then change it back to the prior state before leaving
that procedure". It isn't always clear when something is global.
Assume everything is global unless you know different.

In every procedure in which you Set Warnings Off, be sure to Set
Warnings On before leaving the procedure. That will leave the Options
you selected in force all the rest of the time.

Your Set Warnings On should be in the code after the MyProcedure_Exit:
label. Make sure that every exit from the procedure is via that
label, Even your Error path should exit via the MyProcedure_Exit:
label.

HTH
--
-Larry-
--

"AccessHelp" <(E-Mail Removed)> wrote in message
news:A937B2A4-F055-4AF2-9909-(E-Mail Removed)...
> Hi Cheese_whiz,
>
> Thanks for the response. I checked the Confirm section of

Edit/Find, and
> "Record Changes", "Document Deletions" and "Action Queries" boxes

are
> checked. Is there anywhere in Access to turn it back on? Now, even

when I
> close the forms, it does not prompt me to save them.
>
> Thanks.
>
> "Cheese_whiz" wrote:
>
> > Hi AH,
> >
> > In 2003 (at least), you can go to Tools>Options>Edit/Find and look

under
> > 'confirm' and there is a place for 'action queries'. Check that

to confirm
> > before running action queries.
> >
> > Hope that helps,
> > CW
> >
> > "AccessHelp" wrote:
> >
> > > Hello all,
> > >
> > > For some reason, my Access database database does not prompt me

any messages
> > > when I run my Append or Update query.
> > >
> > > Has anyone had this kind of experience? How can I make it to

prompt me again?
> > >
> > > Thanks.



 
Reply With Quote
 
Brent Spaudling \(datAdrenaline\)
Guest
Posts: n/a
 
      12th Jul 2007
The SetWarnings setting does not "reset" when your macro finishes, the last
setting applied stays in effect until you toggle it again. The setting is a
Access level setting, and it is not the same as the "Confirmation" options.

--
Brent Spaulding
datAdrenaline
Access MVP

"AccessHelp" <(E-Mail Removed)> wrote in message
news:74F1C513-B72A-49EC-88F1-(E-Mail Removed)...
> Hi Jeff,
>
> Thanks for your response. I do have the SetWarnings turns off in my
> macros.
> However, I don't think it should affect when I run the query directly. In
> addition, Access does not prompt me to save the forms when I close them.
>
> Thanks.
>
> "Jeff Boyce" wrote:
>
>> It sounds like the SetWarnings has been turned off.
>>
>> You can create a small, simple macro in which you turn the SetWarnings to
>> ON.
>>
>> Regards
>>
>> Jeff Boyce
>> Microsoft Office/Access MVP
>>
>> "AccessHelp" <(E-Mail Removed)> wrote in message
>> news:22FFE177-89BE-48EA-9ACA-(E-Mail Removed)...
>> > Hello all,
>> >
>> > For some reason, my Access database database does not prompt me any
>> > messages
>> > when I run my Append or Update query.
>> >
>> > Has anyone had this kind of experience? How can I make it to prompt me
>> > again?
>> >
>> > Thanks.

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Is it possible to disable auto save of records in Access? Paul Barnard Microsoft Access 2 4th Sep 2009 03:04 PM
Can I turn off Auto save in Access? Laurrie Microsoft Access Getting Started 2 4th Dec 2008 06:21 PM
disable access form auto save temporarly nemo Microsoft Access VBA Modules 0 29th Aug 2008 10:26 PM
Auto-save in Outlook web access - due to timed log out. =?Utf-8?B?U3RldmUgQlA=?= Microsoft Outlook Discussion 2 5th Jan 2006 02:56 PM
Does Access Auto Save your Data? gwmurray Microsoft Access Forms 2 22nd Jan 2004 01:48 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:17 PM.