What does _v0000 mean on the name box?

G

Guest

I am working with vb application that goes through excel worksheets which
have pictures in it. The pictures that were addressable have 'Picture 1' in
the Name box and my code could access them because
Worksheet(1).Pictures.Count returns a non zero value. For those pictures that
when clicked shows a label in the Name box as '_v0000' , the expression
Worksheet(2).Pictures.Count returns a 0, which means that it is not
recognizing that as a picture.
Is there any other object or collection other than Pictures that those
identified with _v0000 pertain to?
Thanks !
 
J

Jim Rech

"Shapes" or "DrawingObjects" can probably access it.

--
Jim
|I am working with vb application that goes through excel worksheets which
| have pictures in it. The pictures that were addressable have 'Picture 1'
in
| the Name box and my code could access them because
| Worksheet(1).Pictures.Count returns a non zero value. For those pictures
that
| when clicked shows a label in the Name box as '_v0000' , the expression
| Worksheet(2).Pictures.Count returns a 0, which means that it is not
| recognizing that as a picture.
| Is there any other object or collection other than Pictures that those
| identified with _v0000 pertain to?
| Thanks !
|
 

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