Bonjour,
Je voudrai lancer une macro attaché à un document Power Point à partir d'un fichier Excel.
Si je lance la macro de Power Point elle fonctionne, mais pas dExcel, SAUF si je lai lancé au moins une fois de Power Point et que je nai pas fermé Power Point.
Le message derreur est le suivant :
Application (unknown member) : Invalid request. Sub or function not defined.
CODE :
D'excel :
Sub AutomatePowerPoint()
Dim oPPTApp As PowerPoint.Application
Dim oPPTPres As PowerPoint.Presentation
Dim sPresentationFile As String
sPresentationFile = "G:\BOITE\THT\Essai 1.PPT"
Set oPPTApp = New PowerPoint.Application
oPPTApp.Visible = True
Set oPPTPres = oPPTApp.Presentations.Open(sPresentationFile)
With oPPTPres = oPPTApp.Run("WechPPT" )
Lancement = oPPTApp.Run(WechPPT)
End With
Set oPPTPres = Nothing
Set oPPTApp = Nothing
End Sub
Dans PowerPoint :
Public Sub WechPPT()
.....