Checking if 'Trust Access to Visual Basic Project' is ticked

George J

Well-known Member
Joined
Feb 15, 2002
Messages
959
I have a macro that seems to work okay for older versions of Excel - I use Office XP (2002)
Can someone tell me if this will work for newer versions (2007 / 2010) please?
And if not, can anyone suggest how check this?

KB1017 - Trust access to VBA project

Code:
Function VBATrusted() As Boolean
On Error Resume Next
VBATrusted = (Application.VBE.VBProjects.Count) > 0
Exit Function
End Function

Private Sub Workbook_Open()
If Not VBATrustedAccess() Then
    MsgBox "No Access to VB Project" & vbLf & _
      "Please allow access in Trusted Sources" & vbLf & _
      "(Tools > Macro > Security > Trusted Source Tab)"
End If
End Sub

I was thinking that i should probably have
VBATrusted = -1
as the third line so that it is negative unless the tick is there. No way of checking older versions right now though.

All help appreciated.
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
It looks like there's no need to exit the function, and the function being called in the Workbook open event should be VBATrusted, not VBATrustedAccess...

Code:
[FONT=Courier New][COLOR=darkblue]Function[/COLOR] VBATrusted() [COLOR=darkblue]As[/COLOR] [COLOR=darkblue]Boolean[/COLOR]
    [COLOR=darkblue]On[/COLOR] [COLOR=darkblue]Error[/COLOR] [COLOR=darkblue]Resume[/COLOR] [COLOR=darkblue]Next[/COLOR]
    VBATrusted = (Application.VBE.VBProjects.Count) > 0
[COLOR=darkblue]End[/COLOR] [COLOR=darkblue]Function[/COLOR]
[COLOR=darkblue]Private Sub Workbook_Open()[/COLOR]
    [COLOR=darkblue]If[/COLOR] [COLOR=darkblue]Not[/COLOR] VBATrusted() [COLOR=darkblue]Then[/COLOR]
        MsgBox "No Access to VB Project" & vbLf & _
          "Please allow access in Trusted Sources" & vbLf & _
          "(Tools > Macro > Security > Trusted Source Tab)"
    [COLOR=darkblue]End[/COLOR] [COLOR=darkblue]If[/COLOR]
End [COLOR=darkblue]Sub[/COLOR]
[/FONT]

...which works in both Excel 2007 and 2010. By the way, the settings can be accessed as follows...

For Excel 2007...

Code:
Office Button > Excel Options > Trust Center > Trust Center Settings > Macro Settings > Trust Access...

For Excel 2010

Code:
File > Options > Trust Center > Trust Center Settings > Macro Settings > Trust Access...
 
Upvote 0
Thanks very much for that Domenic. Can't think why i didn't notice the Exit Function line.

The user i had sent the workbook to told me they didn't see any popup (the Function was being called correctly at that time). I guess some people are just too used to closing down error messages. I might amend the message to Yes/No - 'Do you require instructions on how to do this?' Yes will take them to the KB1017 page. If they still can't get it to work for them, then that's their problem.

I appreciate your reply to this query - i was getting worried that the newer versions could only be checked with 'more modern' code.

thanks again
George
 
Upvote 0

Forum statistics

Threads
1,223,908
Messages
6,175,306
Members
452,633
Latest member
DougMo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top