A
Acalon
Hi All,
PowerPoint 2007 Automation seems to be very slow for me. Just an example : I
create 100 shapes : PPT 2003 : 0.8s | PPT 2007 : 11.7s.
Same test code (below).
Everybody has a slow automation? An idea to improve or optimize function?
<code>
p is Presentation...
for (int i = 1; i < 100; i++)
{
p.Slides[1].Shapes.AddShape(Microsoft.Office.Core.MsoAutoShapeType.msoShapeRectangle, j, j, 100, 100);
j += 10;
}
</code>
PowerPoint 2007 Automation seems to be very slow for me. Just an example : I
create 100 shapes : PPT 2003 : 0.8s | PPT 2007 : 11.7s.
Same test code (below).
Everybody has a slow automation? An idea to improve or optimize function?
<code>
p is Presentation...
for (int i = 1; i < 100; i++)
{
p.Slides[1].Shapes.AddShape(Microsoft.Office.Core.MsoAutoShapeType.msoShapeRectangle, j, j, 100, 100);
j += 10;
}
</code>