Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Power Point Notes Pane 1

Status
Not open for further replies.

oldwen

Programmer
Joined
Dec 2, 2003
Messages
23
Location
US
Hello all,

I have a PPT that has notes on every slide in the notes pane. Is there a way to remove these notes from every slide in the entrie PPT, either VBA or a macro. Thank you.

Oldwen
 
Try this macro.

I'd recommend making a copy of the presentation first, just in case.

Sub RemoveNotes()
Dim x As Integer
With ActivePresentation
For x = 1 To .Slides.Count
.Slides(x).NotesPage. _
Shapes(2).TextFrame. _
TextRange.Text = ""
Next x
End Sub

 
Looks like this code could work, but I am recieving a message that I have macros disabled. I don't find any documentation on how to enable macros, any advise. Thank you.
 
1/2listener,

GOOD JOB!

I spent about 45 minutes trying to solve what the Shapes(2) object solves.

==> *

:-)

Skip,

Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884
 
Clicking the following sequence in PowerPoint sets macro security:

Tools | Macro | Security... | {tab} Security Level

Your selection here depends on your comfort level. I use Medium most of the time. I do not recommend leaving the setting on Low.

I'd also recommend, while you are in the neighborhood, clicking on the 'Trusted Sources' tab and selecting 'Trust all installed add-ins and templates'.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top