A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Access 2003 runtime mode-can't turn off warning messages for macro



 
 
Thread Tools Display Modes
  #1  
Old February 5th, 2005, 05:53 PM
Bitsy
external usenet poster
 
Posts: n/a
Default Access 2003 runtime mode-can't turn off warning messages for macro

In Access 2003 I turn off all the warning messages in the Edit/Find tab under
Tools + Options for my data base. I then package it with the Access 2003
Developer Extensions Tools Wizard into a .dme runtime package. When I run
it on another computer other than mine, a computer with Access on it or one
without Access on it, I get all the warning messages for macros and queries,
as if I never turned off the Warning messages in the Edit/Find tab. Any
ideas??
  #2  
Old February 5th, 2005, 06:06 PM
Rick Brandt
external usenet poster
 
Posts: n/a
Default

"Bitsy" wrote in message
...
In Access 2003 I turn off all the warning messages in the Edit/Find tab under
Tools + Options for my data base. I then package it with the Access 2003
Developer Extensions Tools Wizard into a .dme runtime package. When I run
it on another computer other than mine, a computer with Access on it or one
without Access on it, I get all the warning messages for macros and queries,
as if I never turned off the Warning messages in the Edit/Find tab. Any
ideas??


Yeah, those options are for "your installation of Access" Only a few of the
options in Tools - Options are "for this particular file" and they are labeled
as such.

If you're far enough along in Access development to be packaging solutions with
the Developer's Extensions you should not be using macros (especially in the
Runtime). Action queries can avoid the prompts by using either...

DoCmd.SetWarnings False
DoCmd.OpenQuery (or DoCmd.RunSQL)
DoCmd.SetWarnings True

or (even better)

CurrentDB.Execute "QueryName", dbFailOnError

The latter does not produce the prompts in the first place.



--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com


  #3  
Old February 5th, 2005, 08:08 PM
Albert D. Kallal
external usenet poster
 
Posts: n/a
Default

Simply add the following keys to your runtime packing (the package wizard
does have provision for adding regs keys).

ROOT:Local Machine
Key: SOFTWARE\Microsoft\Jet\4.0\Engines
Name:SandBoxMode
Value:#00000002

ROOT:Local Machine
Key: Software\Microsoft\Office\11.0\Access\Security
Name:Level
Value:#00000001


If you add both tof the above, then you get no security prompts at
all...even if the later jet sp8 is NOT installed. It is clean...and no
prompts....


--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada

http://www.members.shaw.ca/AlbertKallal


 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Access 2003 Runtime John General Discussion 4 December 28th, 2004 04:06 PM
How turn off security warning in Access 2003 Dave General Discussion 1 December 6th, 2004 02:11 PM
Bug: Empty "If Me.Recordset Is Nothing Then" clause causes runtime error 3021 (Access 2003) Boris Using Forms 40 August 25th, 2004 07:32 PM
Access 2003 RK General Discussion 12 June 14th, 2004 10:16 AM
Two versions again-language issue Otto Setup, Installing & Configuration 3 May 28th, 2004 04:57 AM


All times are GMT +1. The time now is 06:53 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.