(Msg. 1) Posted: Fri Sep 05, 2008 4:59 am
Post subject: Many doc to docx converters Archived from groups: microsoft>public>word>conversions (more info?)
Hi,
I have a lot of .doc files which needed to be converted into docx format.
Is there a freeware floating about ?
(Msg. 2) Posted: Fri Sep 05, 2008 5:20 am
Post subject: Re: Many doc to docx converters [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
Hi Cod,
Office 2007 will convert them on the fly as you open them, as will Office 2000, Office XP/2002 or Office 2003 with the addition of
the Microsoft Office Compatibility Kit.
=============
<<"VerySkinnyCod" <VerySkinnyCod.DeleteThis@discussions.microsoft.com> wrote in message
news:58C88E29-7B63-448A-BBE7-80D8B8C65E68@microsoft.com...
Hi,
I have a lot of .doc files which needed to be converted into docx format.
Is there a freeware floating about ?
Thanks<<
--
Bob Buckland ?
MS Office System Products MVP
*Courtesy is not expensive and can pay big dividends*
(Msg. 3) Posted: Fri Sep 05, 2008 5:03 pm
Post subject: Re: Many doc to docx converters [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
If you must convert them all beforehand(?) then the following Word 2007
macro will do that:
Sub SaveAllAsDOCX()
Dim strFileName As String
Dim strDocName As String
Dim strPath As String
Dim oDoc As Document
Dim fDialog As FileDialog
Set fDialog = Application.FileDialog(msoFileDialogFolderPicker)
With fDialog
.Title = "Select folder and click OK"
.AllowMultiSelect = False
.InitialView = msoFileDialogViewList
If .Show <> -1 Then
MsgBox "Cancelled By User", , "List Folder Contents"
Exit Sub
End If
strPath = fDialog.SelectedItems.Item(1)
If Right(strPath, 1) <> "\" Then strPath = strPath + "\"
End With
If Documents.Count > 0 Then
Documents.Close SaveChanges:=wdPromptToSaveChanges
End If
If Left(strPath, 1) = Chr(34) Then
strPath = Mid(strPath, 2, Len(strPath) - 2)
End If
strFileName = Dir$(strPath & "*.doc")
While Len(strFileName) <> 0
Set oDoc = Documents.Open(strPath & strFileName)
Bob Buckland ? wrote:
> Hi Cod,
>
>
> Office 2007 will convert them on the fly as you open them, as will
> Office 2000, Office XP/2002 or Office 2003 with the addition of the
> Microsoft Office Compatibility Kit.
>
> To batch convert files you can use the OFC.exe (Office File
> Converter) tool from the Office 2007 Resource Kit's Office Migration
> Planning Manager (OMPM) toolkit and related items
> http://blogs.technet.com/office_resource_kit/archive/2007/11/09/2007-o...ce-syst >
> =============
> <<"VerySkinnyCod" <VerySkinnyCod.TakeThisOut@discussions.microsoft.com> wrote in
> message news:58C88E29-7B63-448A-BBE7-80D8B8C65E68@microsoft.com...
> Hi,
> I have a lot of .doc files which needed to be converted into docx
> format.
> Is there a freeware floating about ?
>
> Thanks<<
All times are: Eastern Time (US & Canada) (change)
Page 1 of 1
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum