G
Geoff Cox
Hello,
The code below works OK except that I would like to show the slide
with this button on it.
I have tried using
If oSh.AutoShapeType = 130 Then
oSh.Select
MsgBox "end button found"
but get error message re "its view must be active". How do I make it
active?
Thanks
Geoff
For Each oSh In oSl.Shapes
If oSh.Type = 1 Then
If oSh.AutoShapeType = 130 Then
MsgBox "end button found"
End If
End If
Next oSh
Next oSl
The code below works OK except that I would like to show the slide
with this button on it.
I have tried using
If oSh.AutoShapeType = 130 Then
oSh.Select
MsgBox "end button found"
but get error message re "its view must be active". How do I make it
active?
Thanks
Geoff
For Each oSh In oSl.Shapes
If oSh.Type = 1 Then
If oSh.AutoShapeType = 130 Then
MsgBox "end button found"
End If
End If
Next oSh
Next oSl