Creating a scrolling list box

  • Thread starter Thread starter John
  • Start date Start date
J

John

I want to create a list box that will scroll so that when a user of the
presentation clicks on a particular line it will take them to a prescribed
part of the presentation.
How do I create the scrolling list box?
Presumably I can hyperlink each line to the section of the presentation I
want them to visit?
 
You can use this macro, replacing the title of slides i have by yours. I
think this macro's coming from Shyam

Private Sub ComboBox1_DropButtonClick()

ComboBox1.Clear

With ComboBox1

.AddItem "Présentation"

.AddItem "Résultats"

.AddItem "Export"

.AddItem "Annexes"

End With

End Sub



Private Sub ComboBox1_Change()

If ComboBox1.ListIndex = -1 Then Exit Sub

SlideShowWindows(1).View.GotoSlide ComboBox1.ListIndex + 1

End Sub
 
Back
Top