何度もすみません。
確かにさっきいったのですが、また書き込みされません
Public Sub gsub_SaveAsText()
Set acApp = New Access.Application
acApp.OpenCurrentDatabase "Path"
strDir = strDir & "temp\"
Dim strName As String
'---< FORM >
For i = 0 To acApp.CurrentProject.AllForms.Count - 1
strName = acApp.CurrentProject.AllForms(i).Name
Debug.Print strName
SysCmd acSysCmdSetStatus, strName & " Exporting..."
acApp.SaveAsText acForm, strName, "D:\Temp\その他出力\Export\変更前\Form" & strName & ".frm"
Next i
End Sub