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.
i = CurrentDb.QueryDefs.Count
For n = 0 To i - 1
strHold = CurrentDb.QueryDefs(n).Name
'This next line is the one that will do the damage
If Left(strHold, 1) <> "~" Then
'CurrentDb.QueryDefs.Delete strHold
Debug.Print strHold
End If
Next n
CurrentDb.QueryDefs.Refresh