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.
Case "Macros"
If Application.CurrentProject.AllMacros.count = 0 Then
MsgBox "No " & pObjectType & " exist in the database"
Else
For i = 1 To Application.CurrentProject.AllMacros.count
vList = vList & Application.CurrentProject.AllMacros(i - 1).Name & ";"
Next i
End If