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.
[blue]Application.CommandBars("Text").Enabled = False[/blue]
[blue]For Each cb In Application.CommandBars
If cb.Type = msoBarTypePopup Then
cb.Enabled = True
End If
Next[/blue]
[blue]Application.commandbars("Toolbar List").enabled = False[/blue]
Private Sub Document_Close()
ThisDocument.Saved = True
End Sub