D
Danny
To delete all shapes/tables, I used
For Each obj In ActiveDocument.Shapes
obj.Delete
Next
For Each tbl In ActiveDocument.Tables
tbl.Delete
Next
Is there something similar to delete all the captions?
Delete captions from shapes/tables WITHOUT deleting the shapes/tables, ONLY
the captions.
For Each obj In ActiveDocument.Shapes
obj.Delete
Next
For Each tbl In ActiveDocument.Tables
tbl.Delete
Next
Is there something similar to delete all the captions?
Delete captions from shapes/tables WITHOUT deleting the shapes/tables, ONLY
the captions.