ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   How do I delete Word Picture with macro (https://www.excelbanter.com/excel-programming/278133-how-do-i-delete-word-picture-macro.html)

BrianG[_4_]

How do I delete Word Picture with macro
 
I've created a three page sheet with the company logo, pasted as a Word
picture) on the top of each one. There are occasions when only one or
two sheets require data so I'm using the Auto_Close macro to delete the
unused pages. The problem is that I cannot get the Word pictures to
delete. The resulting saved file always has the Word picture image(s)
from the deleted pages(s) at the bottom. How can I delete these along
with the pages?

BrianG



*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Tom Ogilvy

How do I delete Word Picture with macro
 
anything like this is a shape. You have to delete the shape.

i = 0
for each shp in Activesheet.shapes
i = i + 1
if i 1 then
msgbox shp.name
shp.select
' shp.delete
End if
Next

if you know there names you could just do

Activesheet.shapes("Picture 2").Delete

Activesheet.shapes("Picture 3").Delete

as an example.

--
regards,
Tom Ogilvy



BrianG wrote in message
...
I've created a three page sheet with the company logo, pasted as a Word
picture) on the top of each one. There are occasions when only one or
two sheets require data so I'm using the Auto_Close macro to delete the
unused pages. The problem is that I cannot get the Word pictures to
delete. The resulting saved file always has the Word picture image(s)
from the deleted pages(s) at the bottom. How can I delete these along
with the pages?

BrianG



*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!





All times are GMT +1. The time now is 03:46 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com