Devi lavorare in TRUSTED LOCATION...
Quindi significa andare ad inserire nel Registry i riferimenti al tuo APP.
HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Access\Security\Trusted Locations\LoactionX\Path
Quì fai attenzione a 2 cose:
1) Il 12.0 è la Versione
2) LocationX la X è un progressivo incrementale(usa un numero alto)
Quindi creata la Chiave le assegni il Valore del Path... passando
RegWrite strRegKey, CurrentProject.Path
una cosa simile per capirci
Dim strLnKey As String
Dim reg As Object
Set reg = CreateObject("wscript.shell")
strLnKey = "HKEY_CURRENT_USER\Software\Microsoft\Office\" & _
Format(Application.Version, "##,##0.0") & _
"\Access\Security\Trusted Locations\Location250"
reg.RegWrite strLnKey, CurrentProject.Path
Set reg=nothing
...
Puoi trovare una cosa più completa ed ovviamente professionale quì:
http://www.utteraccess.com/wiki/index.php/AddTrustedLocation
Se utilizzi un SETUP dovrebbe essere disponibile nella procedura un metodo per CREARE REGKEY... quindi rendi tutto integrato.
L'unica problematica è se rendi SELEZIONABILE il PATH di installazione, allora devi fare in modo che lo Script dell'installer ne tenga conto.