Additional questions:
How I can Open an Presentation using Open form?
How I can move to a specific slide and insert there the object wanted?
How I can check if it's already a file with that name (not to override it)?
I use Office 2003 SP2.
Thanks!
Dim lSlideIndex as Long
lSlideIndex = 2 ' or whatever slide you want to paste to
prs.Slides(lSlideIndex).Shapes.Paste
> How I can check if it's already a file with that name (not to override it)?
If Len(Dir$("Full Path to File")) > 0 Then
' the file exists
End If
>
> I use Office 2003 SP2.
>
> Thanks!
>
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================