View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Pictures tied to rows.

If you're deleting the rows in code, try:

With worksheets("whatever")
msgbox .pictures.count
'delete your rows
msgbox .pictures.count
end with

I bet that it's just gotten very small.



David Henderson wrote:

Tom,
I did that. In my limited experience the picture does seem to be deleted as
I described in 2000, and I know it does not in 2003. It can be associated
with a cell in Formatting/Properties Size & Position.I think my best bet is
to name each picture , just so that I know how to reference in macro code.
Thanks for your help
David


--

Dave Peterson