IDTstudios1
Programmer
I need to know if there is a way to convert a Word 2003 or Word 2000 file to be compatible with word 97.
thanks
thanks
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.
Private Sub Form_Load()
Dim w As Object
Set w = New Word.Application
For Each c In w.FileConverters
Debug.Print c.FormatName
Next c
End Sub
Private Sub Form_Load()
Dim w As Object
Set w = New Word.Application
For Each c In w.FileConverters
If c.CanSave Then
Debug.Print c.FormatName
End If
Next c
End Sub