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.
Sub NoPrintOrSave()
Dim myControls, ctl
Set myControls = CommandBars.FindControls _
(Type:=msoControlButton, ID:=3) 'Disable Save
For Each ctl In myControls
ctl.Enabled = 0 '1 to enable
Next ctl
Set myControls = CommandBars.FindControls _
(Type:=msoControlButton, ID:=4) 'Disable Print
For Each ctl In myControls
ctl.Enabled = 0 '1 to enable
Next ctl
End Sub