View Single Post
 
Old 01-30-2015, 11:26 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

Not sure what you mean and surely this is not that much a pain to do manually.

Code would be tricky as this is a read only property but you MIGHT be able to fool PowerPoint like this:

Code:
Sub outlineView()
ActiveWindow.ViewType = ppViewNormal
If ActiveWindow.Panes(1).ViewType = ppViewThumbnails Then
Application.CommandBars.ExecuteMso ("OutlineThumbnailsShowHide")
    ActiveWindow.Panes(1).Activate
DoEvents
ActivePresentation.Slides.Range.Select
End If
Application.CommandBars.ExecuteMso ("BulletsAndNumberingNumberingDialog")
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote