Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming,microsoft.public.excel.links
|
|||
|
|||
![]()
With Excel 2000, in a workbook, I want to show a picture (in a shape for
example) that I can pick up directly from an HTTP URL : http://MyServer/MyImage.jpg I don't want to store it, just declare a link with the URL. I've tried with Shape/Hyperlink/PublishObjects but I can't. How to do ? (The final goal is a dynamic URL that I can change by VBA.) Jacques. |
#2
![]()
Posted to microsoft.public.excel.programming,microsoft.public.excel.links
|
|||
|
|||
![]()
Hi Jacques,
You can do it in VBA like this: Sheet1.Shapes.AddPicture "http://server/folder/image.gif", msoTrue, msoFalse, _ 100, 100, 100, 50 Hopefully, you'll know the height and width, because those are required arguments to the AddPicture method. -- Regards, Jake Marx www.longhead.com VUILLERMET Jacques wrote: With Excel 2000, in a workbook, I want to show a picture (in a shape for example) that I can pick up directly from an HTTP URL : http://MyServer/MyImage.jpg I don't want to store it, just declare a link with the URL. I've tried with Shape/Hyperlink/PublishObjects but I can't. How to do ? (The final goal is a dynamic URL that I can change by VBA.) Jacques. |
#3
![]()
Posted to microsoft.public.excel.programming,microsoft.public.excel.links
|
|||
|
|||
![]() You're right ! Thanks a lot !!! Jacques. "Jake Marx" a écrit dans le message de ... Hi Jacques, You can do it in VBA like this: Sheet1.Shapes.AddPicture "http://server/folder/image.gif", msoTrue, msoFalse, _ 100, 100, 100, 50 Hopefully, you'll know the height and width, because those are required arguments to the AddPicture method. -- Regards, Jake Marx www.longhead.com VUILLERMET Jacques wrote: With Excel 2000, in a workbook, I want to show a picture (in a shape for example) that I can pick up directly from an HTTP URL : http://MyServer/MyImage.jpg I don't want to store it, just declare a link with the URL. I've tried with Shape/Hyperlink/PublishObjects but I can't. How to do ? (The final goal is a dynamic URL that I can change by VBA.) Jacques. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
start http://..... vs hyperlink http://..... | Excel Discussion (Misc queries) | |||
Charts to Image or Picture? | Charts and Charting in Excel | |||
How do I convert a picture (bmp or jpg) to a excel button image? . | Excel Discussion (Misc queries) | |||
How do copy text from a picture/image & make it available for edi. | Excel Discussion (Misc queries) | |||
How to copy text from a picture/image & make it available for edi. | Excel Discussion (Misc queries) |