Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
ArmyMom87 ArmyMom87 is offline
external usenet poster
 
Posts: 2
Default Batch Conversion Wizard

I cannot located Batch Conversion Wizard in the new 2007 version.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Batch Conversion Wizard

There are no wizards in Word 2007. What is it that you are trying to do?
There is no need to batch convert doc to docx format. Word 2007 will handle
both and there are advantages to leaving doc as doc.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



ArmyMom87 wrote:
I cannot located Batch Conversion Wizard in the new 2007 version.



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
ArmyMom87 ArmyMom87 is offline
external usenet poster
 
Posts: 2
Default Batch Conversion Wizard

I am trying to convert numerous Word docs to html at one time.

"Graham Mayor" wrote:

There are no wizards in Word 2007. What is it that you are trying to do?
There is no need to batch convert doc to docx format. Word 2007 will handle
both and there are advantages to leaving doc as doc.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



ArmyMom87 wrote:
I cannot located Batch Conversion Wizard in the new 2007 version.




  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Batch Conversion Wizard

The following macro will batch save all docs from a selected folder to html.
It will crash if any of the documents are protected. The original documents
are unchanged.
http://www.gmayor.com/installing_macro.htm

Sub SaveAllAsHTM()
Dim strFileName As String
Dim strDocName() As String
Dim strPath As String
Dim oDoc As Document
Dim Response As Long
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", , "Save all as HTML"
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
strFileName = Dir$(strPath & "*.doc")
While Len(strFileName) 0
Set oDoc = Documents.Open(strPath & strFileName)
strDocName = Split(ActiveDocument.FullName, ".")
If ActiveDocument.SaveFormat = 0 Or _
ActiveDocument.SaveFormat = 12 Then
ActiveDocument.SaveAs _
FileName:=strDocName(0) & ".htm", _
FileFormat:=wdFormatFilteredHTML
End If
oDoc.Close SaveChanges:=wdDoNotSaveChanges
strFileName = Dir$()
Wend
End Sub

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



ArmyMom87 wrote:
I am trying to convert numerous Word docs to html at one time.

"Graham Mayor" wrote:

There are no wizards in Word 2007. What is it that you are trying to
do? There is no need to batch convert doc to docx format. Word 2007
will handle both and there are advantages to leaving doc as doc.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



ArmyMom87 wrote:
I cannot located Batch Conversion Wizard in the new 2007 version.



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Batch Conversion Wizard in 2007? Joyce Microsoft Word Help 1 May 24th 08 06:53 AM
batch conversion wizard preeto New Users 7 December 21st 06 06:21 PM
batch conversion wizard feature preeto Microsoft Word Help 0 December 20th 06 08:15 AM
batch conversion wizard preeto New Users 0 December 19th 06 11:34 AM
Batch Conversion Wizard Kent Gorsuch Microsoft Word Help 0 January 12th 06 01:25 PM


All times are GMT +1. The time now is 12:55 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"