Wrox Home  
Search P2P Archive for: Go

  Return to Index  

access thread: Access Tools Options


Message #1 by "Maha Arupputhan Pappan" <mahap@p...> on Wed, 17 Apr 2002 10:52:28
Hi all,

Good day.

I need to turn off the Confirmation Dialog Boxes from being displayed in 
Access. Thus, I need to do the following:

1. Select Tools > Options.
2. Click the "Edit / Find" Page Tab.
3. Uncheck the following:
   3.1 Record changes
   3.2 Document deletions
   3.3 Action queries

Now, the built-in Access XP confirmation dialog boxes are disabled.

QUESTION:
How can I programmatically, remove the above three (3) check boxes without 
doing it manually?

Your assistance is much appreciated.

Thanks,
Maha
Message #2 by Omar Chaudry <OChaudry@b...> on Wed, 17 Apr 2002 10:54:30 +0100
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

------_=_NextPart_001_01C1E5F5.DEBA8B00
Content-Type: text/plain

Docmd.setwarnings false			'turns them off
Docmd.setwarnings True			'turns them back on
					'it's a good idea to turn them back
on after 					'you've done your sequence
of actions
HTH
Omar

___________________________
Omar Chaudry
Bowman Power Systems
Belvidere Road
Southampton
SO14 5QY
Tel: 023 80 352924

-----Original Message-----
From: Maha Arupputhan Pappan [mailto:mahap@p...] 
Sent: 17 April 2002 11:52
To: Access
Subject: [access] Access Tools Options

Hi all,

Good day.

I need to turn off the Confirmation Dialog Boxes from being displayed in 
Access. Thus, I need to do the following:

1. Select Tools > Options.
2. Click the "Edit / Find" Page Tab.
3. Uncheck the following:
   3.1 Record changes
   3.2 Document deletions
   3.3 Action queries

Now, the built-in Access XP confirmation dialog boxes are disabled.

QUESTION:
How can I programmatically, remove the above three (3) check boxes without 
doing it manually?

Your assistance is much appreciated.

Thanks,
Maha



  DISCLAIMER: The information in this message is confidential and may be
legally privileged. It is intended solely for the addressee.  Access to this
message by anyone else is unauthorised.  If you are not the intended
recipient, any disclosure, copying, or distribution of the message, or any
action or omission taken by you in reliance on it, is prohibited and may be
unlawful.  Please immediately contact the sender if you have received this
message in error. Thank you.



Message #3 by "Derrick Flores" <Derrick_Flores@s...> on Wed, 17 Apr 2002 08:27:53 -0500
Use
docmd.SetWarnings False ' Turn Off Feature
docmd.SetWarnings True  'Turn On Feature

Thanks,

Derrick Flores
66318

>>> "Maha Arupputhan Pappan" <mahap@p...> 04/17 10:52 AM >>>
Hi all,

Good day.

I need to turn off the Confirmation Dialog Boxes from being displayed 
in
Access. Thus, I need to do the following:

1. Select Tools > Options.
2. Click the "Edit / Find" Page Tab.
3. Uncheck the following:
   3.1 Record changes
   3.2 Document deletions
   3.3 Action queries

Now, the built-in Access XP confirmation dialog boxes are disabled.

QUESTION:
How can I programmatically, remove the above three (3) check boxes 
without
doing it manually?

Your assistance is much appreciated.

Thanks,
Maha

Message #4 by "Maha Arupputhan Pappan" <mahap@p...> on Thu, 18 Apr 2002 10:01:15
> Use
docmd.SetWarnings False ' Turn Off Feature
docmd.SetWarnings True  'Turn On Feature

Thanks,

Derrick Flores
66318

>>> "Maha Arupputhan Pappan" <mahap@p...> 04/17 10:52 AM >>>
Hi all,

Good day.

I need to turn off the Confirmation Dialog Boxes from being displayed 
in
Access. Thus, I need to do the following:

1. Select Tools > Options.
2. Click the "Edit / Find" Page Tab.
3. Uncheck the following:
   3.1 Record changes
   3.2 Document deletions
   3.3 Action queries

Now, the built-in Access XP confirmation dialog boxes are disabled.

QUESTION:
How can I programmatically, remove the above three (3) check boxes 
without
doing it manually?

Your assistance is much appreciated.

Thanks,
Maha

Thank you very much guys.
Maha.

  Return to Index