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.
Public Function Find()
Dim db As Database
Dim cnt As Container
Dim doc As Document
Dim intCount As Integer
Dim strForm As String
Dim strDate As String
Dim strDest As String
strDest = "database location" 'to be replaced with a recordset
Set db = OpenDatabase(strDest)
' ******** Forms ********
Set cnt = db.Containers!Forms
If cnt.Documents.Count > 0 Then
For Each doc In cnt.Documents
strForm = doc.Name
strDate = doc.LastUpdated
MsgBox strForm & vbCr & strDate
Next doc
End If
End Function