W
Wolf7
Hi,
i'm experiencing the following issue:
I created an add-in for MS Powerpoint 2003 which adds pictures from a
webserver to a slide.
The code looks like that and works fine:
Code Snippet
//Insert Picture on current slide
PowerPoint.Shape imageShape = null;
PowerPoint.Shapes shapes = slide.Shapes;
imageShape = shapes.AddPicture("http://www.something.com/something.png",
Microsoft.Office.Core.MsoTriState.msoFalse,
Microsoft.Office.Core.MsoTriState.msoTrue,
100, 100, 300, 200);
Now I'm trying to build the same add-in for MS Powerpoint 2007 (same code
snippet), but it doesn't work.
It seems to be possible to add a picture from the local file system, but not
from a webserver.
Does anyone know why?
Is there a workaround?
Kind regards,
Wolfgang
i'm experiencing the following issue:
I created an add-in for MS Powerpoint 2003 which adds pictures from a
webserver to a slide.
The code looks like that and works fine:
Code Snippet
//Insert Picture on current slide
PowerPoint.Shape imageShape = null;
PowerPoint.Shapes shapes = slide.Shapes;
imageShape = shapes.AddPicture("http://www.something.com/something.png",
Microsoft.Office.Core.MsoTriState.msoFalse,
Microsoft.Office.Core.MsoTriState.msoTrue,
100, 100, 300, 200);
Now I'm trying to build the same add-in for MS Powerpoint 2007 (same code
snippet), but it doesn't work.
It seems to be possible to add a picture from the local file system, but not
from a webserver.
Does anyone know why?
Is there a workaround?
Kind regards,
Wolfgang