converted pdf to word doesn't look right

G

Guest

I had a pdf converted into a word document, but every paragraph is in its own
text box. How can I get the document to be just one thing?
 
D

Dawn Crosier, Word MVP

You can use this macro to convert all the textboxes to frames and then
delete them.

Sub RemoveTextbox()

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

If you need help installing the macro, see
http://www.gmayor.com/installing_macro.htm

--
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 had a pdf converted into a word document, but every paragraph is in its own
text box. How can I get the document to be just one thing?


No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.503 / Virus Database: 269.15.34/1134 - Release Date:
11/16/2007 9:52 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

Top