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 AddMenu()
Dim btnNew As CommandBarButton
With Application.CommandBars.Add("MyMenu", , True, True)
.Visible = True
Set btnNew = .Controls.Add(msoControlButton)
With btnNew
.Style = msoButtonIconAndCaption
.Caption = "Button1"
ActiveSheet.Shapes("Picture_1").Copy
.PasteFace
End With
End With
End Sub