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 testModule()
Dim Myvb As VBComponent
For Each Myvb In ThisWorkbook.VBProject.VBComponents
If Myvb.Name <> "Module1" Then
If Myvb.Type = vbext_ct_StdModule Then
MsgBox ("Deleting Standard module " & Myvb.Name)
ThisWorkbook.VBProject.VBComponents.Remove Myvb
End If
End If
Next Myvb
End Sub