Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everybody.
I use to send charts to powerpoint 2010 with VBScript macros this way:
ActiveDocument.GetSheetObject(sGrafico).Restore
ActiveDocument.GetApplication.WaitForIdle 1000
ActiveDocument.GetSheetObject(sGrafico).CopyBitmapToClipboard
Set PPSlide = PPPres.Slides(iSlide)
With PPSlide.Shapes.Paste
.Top = 80 'This line sets the top location of the image
.Left = 50 'This line sets the left location
End With
The user has been uploaded to Office 2013. Since then, the "Top" and "Left" properties starts to generete an OCX Error.
Has somebody experienced this behaviour?
Regards.
Damian