Public Function GetAllForms() As String
Dim objDoc As Variant
Dim strAllForms As String
For Each objDoc In DBEngine(0)(0).Containers("Forms").Documents
strAllForms = strAllForms & objDoc.Name & vbCrLf
Next objDoc
If Len(strAllForms) > 0 Then
strAllForms = Left$(strAllForms, Len(strAllForms) - Len(vbCrLf))
End If
GetAllForms = strAllForms
End Function