Hello, I am Exporting Notes document to PowerPoint. Below is the code.
============================
Set PwrPPt = CreateObject(“PowerPoint.Application”)
PwrPPt.Presentations.Open"C:\PP.ppt"
================================
Up to here code is working fine and opening the ppt file.
==================================
With PwrPPt .Presentations(1).Slides(1).Shapes(“names”).OLEFormat.Object
’ After this line I am getting error
'###“Error 213: OLE: The item with the specified name wasn’t found.”
.Text=“Testname”
.FontSize=24
.FontName=“Garamond”
End With
===============================
Can any one suggest how to add text in the power point slide by slide.
Pawan