How do I show the Slide ID of a single slide?
Sub ShowSlideID()
Dim p As Presentation
Set p = ActivePresentation
Dim No As Integer
Dim i As Integer
'***************************
i = InputBox("Enter Slide number")
No = p.Slides(i).SlideID
MsgBox (No)
End Sub