R
rdemyan via AccessMonster.com
In a previous post by TC, I learned that you can open an instance of Access
2003 and just for that instance set the macro security level to low.
Unfortunately, I don't have the link available, but here is the code.
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 would like to open a workgroup secured database and pass command arguments.
I would like to use VBScript as noted above so that I can reset the macro
security level. Currently, I am using the Shell command to open my workgroup
secured database and pass command arguments. How can I incorporate both the
VBScript included in this post with the Shell command I'm currently using.
Thanks in advance.
2003 and just for that instance set the macro security level to low.
Unfortunately, I don't have the link available, but here is the code.
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 would like to open a workgroup secured database and pass command arguments.
I would like to use VBScript as noted above so that I can reset the macro
security level. Currently, I am using the Shell command to open my workgroup
secured database and pass command arguments. How can I incorporate both the
VBScript included in this post with the Shell command I'm currently using.
Thanks in advance.