S
sanj
Hi,
I would like to add a combox to my slide that displays the following:
case study 1
case study 2
case study 3
etc then jump to a particular slide depending on what has been chosen from
the combobox
I think this code for selecting the index might work but I don't know how to
assign the above to a combobox etc
Private Sub ComboBox1_Click()
Select Case ComboBox1.Value
Case 0
With SlideShowWindows(1).View
.GotoSlide 3
End With
Case 1
With SlideShowWindows(1).View
.GotoSlide 3
End With
Case 2
With SlideShowWindows(1).View
.GotoSlide 3
End With
End Select
End Sub
Any help is appreciated
I would like to add a combox to my slide that displays the following:
case study 1
case study 2
case study 3
etc then jump to a particular slide depending on what has been chosen from
the combobox
I think this code for selecting the index might work but I don't know how to
assign the above to a combobox etc
Private Sub ComboBox1_Click()
Select Case ComboBox1.Value
Case 0
With SlideShowWindows(1).View
.GotoSlide 3
End With
Case 1
With SlideShowWindows(1).View
.GotoSlide 3
End With
Case 2
With SlideShowWindows(1).View
.GotoSlide 3
End With
End Select
End Sub
Any help is appreciated