![]() |
#1
|
|||
|
|||
![]() Hello. I have Office 2010. Since there is no recording macro option in PowerPoint now, I need some macro code to open the PowerPoint Outline > Bullets and Numbering dialog box. I have to renumber a lot of outlines in slides and its a pain to have to open it each time. Can someone help? Thanks, JCM |
#2
|
|||
|
|||
![]()
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 |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
find a code and create outline | bnyamin | Word VBA | 3 | 10-20-2014 11:56 PM |
![]() |
Jennifer Murphy | Word VBA | 3 | 01-22-2014 11:22 PM |
Macro to toggle outline level | Jennifer Murphy | Word VBA | 0 | 07-08-2013 08:20 AM |
VBA Code in Project to Wake Up/Open Excel | OTPM | Excel Programming | 2 | 05-23-2011 02:24 PM |
VB code from one document runs on other open documents | beav_35 | Word VBA | 0 | 11-10-2010 02:52 PM |