How 'bout this:
Dim pos,ctr as Integer
Dim myDocname as String
With Application.FileSearch
.FileName="*.*"
.LookIn =
YourPath
.SearchSubFolders =
True or False as you like it
.Execute
For ctr = 1 to .FoundFiles.Count
Documents.Open FoundFiles.Item(ctr)
ChangeFileOpenDirectory
YourPath
myDocname=ActiveDocument.FullName
pos = InStr(myDocname, "."

If pos > 0 Then
myDocname = Left(MyDocname, pos-1)
myDocname=myDocname & ".doc"
ActiveDocument.SaveAs FileName:=myDocname, FileFormat:=wdFormatDocument
End If
ActiveDocument.Close
Next
End With
Should do fine.
MakeItSo
Andreas Galambos
EDP / Technical Support Specialist
Bowne Global Solutions Wuppertal, Germany
(andreas.galambos@bowneglobal.de)
HP: