Using combo boxes

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



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


.



Relevant Pages

  • Re: BeforeUpdate or AfterUpdate ?
    ... mandatory data. ... Although I present a combobox, limited to the choices to pick out, people ... Private Sub CboAfterUpdate() ... jump to the next TAB-stop. ...
    (microsoft.public.access.formscoding)
  • Re: Using combo boxes
    ... ComboBox1_Initializewhen viewing the slide rather than running from the ... Private Sub ComboBox1_Initialize ... > Manipulating Listbox and Combobox controls on slides ... > Steve Rindsberg, PPT MVP ...
    (microsoft.public.powerpoint)
  • Re: Using combo boxes
    ... Manipulating Listbox and Combobox controls on slides ... > etc then jump to a particular slide depending on what has been chosen from ... > Private Sub ComboBox1_Click ... Steve Rindsberg, PPT MVP ...
    (microsoft.public.powerpoint)
  • Re: How to create combo box in the slide
    ... Private Sub ComboBox1_BeforeDropOrPaste(ByVal Cancel As ... 'Check for valid selection ... 'This will advance the show to the selected slide ... "Bernard Guzman" wrote in message ...
    (microsoft.public.powerpoint)
  • Re: Drop down box and other slides
    ... Select the Combobox item and draw onto your slide ... Private Sub ComboBox1_BeforeDropOrPaste(ByVal Cancel As ... Post back if this does not do what you want or you need help modifying it. ... "Marco Galvan" wrote in message ...
    (microsoft.public.powerpoint)