Is there a "FREEWARE" program that will convert from PDF to Word?

  • Thread starter Thread starter Guest
  • Start date Start date
1. Please use this large white space to ask your question.

2. How to convert Adobe Acrobat Reader (*.pdf) files to Word 2003
http://support.microsoft.com/default.aspx?scid=kb;en-us;826209

I can't tell you how well this works because I use a "paid for" software
program to convert from .pdf to .doc. It does a decent job on a Word .doc.
Can't say the same for other programs tho.
 
See http://www.google.com/search?hl=en&q=free+PDF+software for programs to
create PDFs from Word. If there is free software to convert from PDF to
Word, I am unaware of it.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
For some reason, when using Acrobat 8 Pro to convert a PDF to a Word.doc, it
generates most of the text in hundreds, or thousands, of separate frames.
There appears to be no setting in Acrobat to prevent this; the only
alternative is to convert to plain text. Seems like PDF to Word used to go a
lot smoother in earlier versions of Acrobat, or am I just hallucinating?
 
JoAnn -

It works the same in both 2003 and 2007.

I wrote a macro which loops through and removes the frames most of the
time...

Sub RemoveFrame()
Dim MyBox as Shape
For Each MyBox in ActiveDocument.Shapes
With MyBox
.Select
.Line.Visible = msoFalse
.ConvertToFrame
End With
Next MyBox
Dim MyFrame as Frame
For Each MyFrame in ActivceDocument.Frames
MyFrame.Select
MyFrame.Delete
Next MyFrame
End Sub

--
Dawn Crosier
Microsoft MVP
"Education Lasts a Lifetime"
This message is posted to a newsgroup. Please post replies and questions
to the newsgroup so that others can learn as well.




I haven't tried that. Which version of Word? (I already have Acrobat Pro v8)

--

JoAnn Paules
Microsoft MVP - Publisher

How to ask a question
HYPERLINK "http://support.microsoft.com/kb/555375"http://support.microsoft.com/kb/555375


No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.488 / Virus Database: 269.14.6/1061 - Release Date:
10/10/2007 8:43 AM
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top