Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Uni Bull Uni Bull is offline
external usenet poster
 
Posts: 2
Default Batch conversion of Wordpdf

Hi,

I have some problems with my Adobe Elements 7.05 - since it
apparently doesn't fully support Word 2007...
Hence I can't batch-convert a bunch of Word documents to pdf :-(

I know that there is a add-in for Word 2007 but it is still only doc by doc.

Do you know of any (free) utility that can do a batch conversion from
..doc.pdf

--
Regards,

Uni Bull
Denmark


  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Batch conversion of Wordpdf

All PDF conversion tools operate on a doc by doc basis. It is easy enough to
automate that process with a macro, but then if you couple that with free
PDF tools, you will have to respond to a prompt for each file, so you don't
gain a great deal. To lose the prompt you will almost certainly have to buy
a commercial PDF creation utility.

I have not used Adobe Elements, but if it has added a PDF 'printer' driver
to the list of available printers then that one *may* work without the
prompt. In that case you would need something like the following which will
(from Word 2007) print all the doc and docx files in a selected folder to
PDF using the driver at:
ActivePrinter = "Adobe PDF"
http://www.gmayor.com/installing_macro.htm


Sub PrintFolderContentsToPDF()
On Error GoTo err_FolderContents
Dim FirstLoop As Boolean
Dim DocList As String
Dim DocDir As String
Dim sPrinter As String
Dim fDialog As FileDialog
Dim i As Long

Set fDialog = Application.FileDialog(msoFileDialogFolderPicker)
With fDialog
.Title = "Select Folder containing the documents to be inserted and
click OK"
.AllowMultiSelect = False
If .Show -1 Then
Exit Sub
End If
DocDir = CurDir & "\"
End With

If Documents.Count 0 Then
Documents.Close SaveChanges:=wdPromptToSaveChanges
End If
sPrinter = ActivePrinter
ActivePrinter = "Adobe PDF"
Application.ScreenUpdating = False
FirstLoop = True
If Left(DocDir, 1) = Chr(34) Then
DocDir = Mid(DocDir, 2, Len(DocDir) - 2)
End If
DocList = Dir$(DocDir & "*.doc?")
Do While DocList ""
Documents.Open DocList
ActiveDocument.PrintOut
ActiveDocument.Close SaveChanges:=wdDoNotSaveChanges
DocList = Dir$()
FirstLoop = False
Loop
Application.ScreenUpdating = True
ActivePrinter = sPrinter
Exit Sub
err_FolderContents:
MsgBox Err.Description
Exit Sub
End Sub

--

Graham Mayor - Word MVP

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


Uni Bull wrote:
Hi,

I have some problems with my Adobe Elements 7.05 - since it
apparently doesn't fully support Word 2007...
Hence I can't batch-convert a bunch of Word documents to pdf :-(

I know that there is a add-in for Word 2007 but it is still only doc
by doc.
Do you know of any (free) utility that can do a batch conversion from
.doc.pdf



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 of Word 2007 to html RSR FARM Microsoft Word Help 5 December 25th 07 06:41 AM
How do I do a batch conversion of Wordperfect .dat files to Word? BLCinD Microsoft Word Help 1 February 17th 07 06:03 AM
batch conversion wizard preeto New Users 7 December 21st 06 06:21 PM
batch conversion wizard in word 2007 preeto Microsoft Word Help 0 December 20th 06 12:37 PM
Word Batch Conversion C Goebel Microsoft Word Help 6 March 8th 05 08:11 PM


All times are GMT +1. The time now is 12:51 AM.

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"