Supercharge your PowerPoint productivity with
|
PPTools |
As far as I know, nobody knows the answer to this question. The answer may be "It depends" But if you feel bold, you could try running this macro. Start with a presentation containing only one blank slide.
Sub MaxItOut()
Dim x As Long
Dim MaxSlides As Long
MaxSlides = 100 ' or however far you want to take this
' Longs can take values up to 2,147,483,647
' Speaking of Long, it might take a LONG time to run the macro if you max it
' Assuming there's already one slide in the presentation
For x = 2 To MaxSlides
ActivePresentation.Slides.Add x, ppLayoutBlank
With ActivePresentation.Slides(x)
With .Shapes.AddTextbox(msoTextOrientationHorizontal, 100, 100, 200, 200)
.TextFrame.TextRange.Text = CStr(x)
End With
End With
Next x
End Sub
See How do I use VBA code in PowerPoint? to learn how to use this example code.
Español Deutsch Français Português Italiano Nederlands Greek Japanese Korean Chinese |
Supercharge your PPT Productivity with PPTools
|
content authoring & site maintenance by |
How many slides can a presentation hold?
http://www.pptfaq.com/FAQ00513.htm
Last update 09 September, 2006