Re: Bypass Security Warnings in Access Runtime
From: TC (aatcbbtccctc_at_yahoo.com)
Date: 01/27/05
- Next message: tina: "Re: How do you make an access database foolproof ?"
- Previous message: Ernie: "Re: Outlook 2003 reading pane"
- In reply to: Paul Overway: "Re: Bypass Security Warnings in Access Runtime"
- Next in thread: Paul Overway: "Re: Bypass Security Warnings in Access Runtime"
- Reply: Paul Overway: "Re: Bypass Security Warnings in Access Runtime"
- Messages sorted by: [ date ] [ thread ]
Date: 26 Jan 2005 20:30:49 -0800
Paul Overway wrote:
> You need to sign your application with a digital certificate or set
macro
> security to low.
Why does everyone keep saying this?
By far the easiest way is to start the database via a script file which
sets the macro security level to low for that single invocation of
Access. This does not require a certificate, or a registry change, and
it does not affect any other database(s) - just the one being started
by that script.
Eg. in VBScript:
dim o
set o=createobject ("Access.Application")
o.automationsecurity=1 ' set macro security LOW.
o.opencurrentdatabase "full path to your database"
o.usercontrol=true
set o=nothing
I've never packaged a system with the Access Runtime, but surely it
should be possible to set it to start the system by running a script?
HTH,
TC
- Next message: tina: "Re: How do you make an access database foolproof ?"
- Previous message: Ernie: "Re: Outlook 2003 reading pane"
- In reply to: Paul Overway: "Re: Bypass Security Warnings in Access Runtime"
- Next in thread: Paul Overway: "Re: Bypass Security Warnings in Access Runtime"
- Reply: Paul Overway: "Re: Bypass Security Warnings in Access Runtime"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|