View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ulrik Gustafsson Ulrik Gustafsson is offline
external usenet poster
 
Posts: 9
Default How to get image's path?

Hi,

No, unfortunately it is not possible. As soon as you have assigned the
picture property of an image control to an image path
the image is converted to an embedded picture object.

The only thing you can do of course is to reassign a new image path with
LoadPicture.

Hope this helps

/Ulrik



"eFrank" wrote in message
...
Hi

If I write the following code:
image.object.picture = _LoadPicture("c:\photo\abc.gif")

Can I get image's path "c:\photo\abc.gif" from image object? If yes, how

to get?

Thanks.
eFrank