C
cgrier
All,
Sorry, I have read many posts but can't seem to find the one that fits
my very basic need. All I want to do is create a combobox on my slide
that allows the viewer to choose from three choices. Below is the
code I have so far which I found on one of the postings on this
website:
Sub LoadCombo()
ComboBox1.Clear
With ComboBox1
.AddItem "First Slide"
.AddItem "Second Slide"
.AddItem "Third Slide"
End With
End Sub
The challenge I am having is that when you are in the slideshow and
you choose "First Slide" from the dropdown the number 0 appears in the
combobox. Same for the other choices, expect you get the number 1 or
2 depending on your choice. How do I get the text to replace the
number after the view has selected it?
Thank you!
Cgrier
Sorry, I have read many posts but can't seem to find the one that fits
my very basic need. All I want to do is create a combobox on my slide
that allows the viewer to choose from three choices. Below is the
code I have so far which I found on one of the postings on this
website:
Sub LoadCombo()
ComboBox1.Clear
With ComboBox1
.AddItem "First Slide"
.AddItem "Second Slide"
.AddItem "Third Slide"
End With
End Sub
The challenge I am having is that when you are in the slideshow and
you choose "First Slide" from the dropdown the number 0 appears in the
combobox. Same for the other choices, expect you get the number 1 or
2 depending on your choice. How do I get the text to replace the
number after the view has selected it?
Thank you!
Cgrier