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.
Dim rs As Recordset
strSQL = "SELECT [Name] FROM MsysObjects " _
& "WHERE [Type] = -32768"
Set rs = CurrentDb.OpenRecordset(strSQL)
Do Until rs.EOF
Debug.Print rs!Name
DoCmd.OpenForm rs!Name, acDesign
Debug.Print Forms(rs!Name).RecordSource
DoCmd.Close acForm, rs!Name, acSaveNo
rs.MoveNext
Loop