PDA

View Full Version : Solved: GoTo Function



Paleo
03-09-2005, 10:52 PM
How can I send my presentation to a certain slide according to what was typed in an inputbox?

I need something like:

Presentation.GoToSlide(65)
:banghead:

Jacob Hilderbrand
03-09-2005, 11:07 PM
ActivePresentation.Slides(SlideNumber).Select

SlideNumber can be a number you get from an Input Box.

Paleo
03-10-2005, 11:45 AM
Great Jake,

thats exactly what I needed! Thanks!!

Killian
03-10-2005, 11:55 AM
FYI there is a GoToSlide function in PowerPoint as part of the View object
Application.ActiveWindow.View.GotoSlide _
(InputBox("Enter slide number", "Go to slide..."))

Paleo
03-10-2005, 11:58 AM
Gee, great Killian,

thanks.