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.
Function RecordsourceList()
'List recordsources of all Forms and Reports
CurrentDb.Execute ("Delete * from TestRecordSources")
Dim objCurrent As AccessObject
Dim frmCurrent As Form
Dim rptCurrent As Report
Dim strFormName, strReportName As String
Dim rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset("Select * from TestRecordSources")
For Each objCurrent In CurrentProject.AllForms
DoCmd.OpenForm objCurrent.name, acDesign, , , acFormPropertySettings, acWindowNormal
Set frmCurrent = Application.Screen.ActiveForm
strFormName = frmCurrent.name
rs.AddNew
rs!ObjectName = frmCurrent.name
rs!ObjectType = "Form"
rs!RecordSource = frmCurrent.RecordSource
rs.Update
DoCmd.Close acForm, strFormName, acSaveNo
Next objCurrent
For Each objCurrent In CurrentProject.AllReports
DoCmd.OpenReport objCurrent.name, acViewDesign, , , acWindowNormal
Set rptCurrent = Application.Screen.ActiveReport
strReportName = rptCurrent.name
rs.AddNew
rs!ObjectName = rptCurrent.name
rs!ObjectType = "Report"
rs!RecordSource = rptCurrent.RecordSource
rs.Update
DoCmd.Close acReport, strReportName, acSaveNo
Next objCurrent
Set rs = Nothing
End Function