![]() |
|
#2
|
|||
|
|||
|
Where do you want the shape names to end up?
Message Box? Array? Immediate pane? Print on slide? In a text file? Somewhere else? Example Sub getShapeNames() Dim oshp As Shape Dim osld As Slide Dim strReport As String strReport = "Shapes On Slide" & vbCrLf & "===========" & vbCrLf & vbCrLf On Error Resume Next Set osld = ActiveWindow.View.Slide If Not osld Is Nothing Then ' check slide in view For Each oshp In osld.Shapes strReport = strReport & oshp.Name & vbCrLf Next oshp If strReport = "" Then strReport = "No shapes!" MsgBox strReport End If End Sub |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Copy & Paste Shapes & Motion Paths from 1 Slide Size to Another
|
buckaroobanzai | PowerPoint | 1 | 06-08-2012 05:32 AM |
Where did map shapes go?
|
SueK | PowerPoint | 1 | 01-20-2011 04:30 AM |
Find and add new Shapes
|
bonani | PowerPoint | 1 | 11-26-2009 06:21 PM |
| Shapes Will Not Display | JoeTx | Visio | 0 | 03-13-2008 09:01 AM |
| My Shapes some appear some don't | Jean-Paul | Visio | 0 | 03-01-2006 01:38 AM |