FAQ PowerPoint

FAQ PowerPointConsultez toutes les FAQ
Nombre d'auteurs : 20, nombre de questions : 150, dernière mise à jour : 10 juillet 2021
Sommaire→Macros, VBA et fonctions avancées→Contrôlesvba
Sélectionnez
Dim Obj As Shape
Dim Resultat As String
For i = 1 To ActivePresentation.Slides.Count
For Each Obj In ActivePresentation.Slides(i).Shapes
If Obj.Type = msoOLEControlObject Then
If Obj.OLEFormat.ProgID = "Forms.CheckBox.1" Then
Resultat = Resultat & ActivePresentation.Slides(i).Name _
& " / " & Obj.Name & " / " & Obj.OLEFormat.Object.Value & vbCrLf
End If
End If
Next Obj
Next i
MsgBox ResultatCréé le 4 octobre 2007 par SilkyRoad



