How to get image's path?

E

eFrank

H

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
eFran
 
U

Ulrik Gustafsson

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
 
Top