Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Deleting text boxes from ALL of the document

Status
Not open for further replies.

emozley

Technical User
Jan 14, 2003
769
GB
Hi,

I've found a macro which deletes text boxes from a document however if the text box is inside a drawing place holder then it leaves them. Is there any way of telling the macro to still delete them?

Sub RemoveTextBox1()
Dim shp As Shape
For Each shp In ActiveDocument.Shapes
If shp.Type = msoTextBox Then shp.Delete
Next shp
End Sub

Thanks very much

Ed
 
Hi Ed,

Try:
Code:
Sub RemoveTextShapes()
    Dim shp As Shape
    For Each shp In ActiveDocument.Shapes
        If shp.TextFrame.HasText = True Then shp.Delete
    Next shp
End Sub
Cheers

[MS MVP - Word]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top