Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[COLOR=blue]
Dim cbrMyToolbar As CommandBar
Set cbrMyToolbar = CommandBars("mnuMyToolbar")
If Not blnHasAdmin Then [b]' Replace with your security check[/b]
cbrMyToolbar.Controls([b]4[/b]).Enabled = False
cbrMyToolbar.Controls([b]6[/b]).Enabled = False
Else
cbrMyToolbar.Controls([b]4[/b]).Enabled = True
cbrMyToolbar.Controls([b]6[/b]).Enabled = True
End If
[/color]