Donna -
If you have Acrobat 8, you can export to Word. The PDF must have been
OCR'ed if it was scanned to PDF rather than Printed or Distilled to PDF.
However, the results of your Export will have put the entire document
into a number of frames. Therefore you will want to run this macro which
will loop through the document and strip them out. You will have some
formatting issues, but the bulk of the document will be there.
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 ActiveDocument.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.
Is there a converter on WORD 2007 or do we still have to go thru shareware?
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.488 / Virus Database: 269.13.30/1027 - Release Date: 9/24/2007 11:27 AM
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.488 / Virus Database: 269.13.30/1027 - Release Date:
9/24/2007 11:27 AM