Access text on NotesPages

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top