Access text on NotesPages

  • Thread starter Thread starter Dominique Heyler
  • Start date Start date
D

Dominique Heyler

Hi,

I'de like to get hold of the text written on the NotesPages of my slides,
but I can't figure how to acess the content. Her is my code:

Sub PrintNotes()
Dim sld As Slide
Dim strTxt As String
For Each sld In ActivePresentation.Slides
strTxt = sld.NotesPage.Text
Debug.Print sld.SlideNumber & " " & strTxt
Next
End Sub

Why doesn't it work?

;-) Dominique
 
Back
Top