J
JDP@Work
Office PP 2K
I have comboboxes on a few slides.
I've added the following code to the slide....
However I run F5 in VBA and I see the values....
However when I save the project and show from the file manager, the drop downs
don't populate.
I know that I have security set to medium and select Yes when prompted.
What gives?
Public Sub AddItemsToList()
ComboBox1.Clear
ComboBox2.Clear
ComboBox3.Clear
ComboBox1.AddItem " "
ComboBox1.AddItem "Soybeans"
ComboBox1.AddItem "Lima Beans "
ComboBox1.AddItem "String Beans"
ComboBox2.AddItem " "
ComboBox3.AddItem "Peas"
ComboBox3.AddItem "Celery"
ComboBox2.AddItem "Carrots"
ComboBox1.AddItem " "
ComboBox1.AddItem "Potatos "
ComboBox1.AddItem "Onions"
ComboBox1.AddItem "Chocolate"
End Sub
TIA
JeffP.....
I have comboboxes on a few slides.
I've added the following code to the slide....
However I run F5 in VBA and I see the values....
However when I save the project and show from the file manager, the drop downs
don't populate.
I know that I have security set to medium and select Yes when prompted.
What gives?
Public Sub AddItemsToList()
ComboBox1.Clear
ComboBox2.Clear
ComboBox3.Clear
ComboBox1.AddItem " "
ComboBox1.AddItem "Soybeans"
ComboBox1.AddItem "Lima Beans "
ComboBox1.AddItem "String Beans"
ComboBox2.AddItem " "
ComboBox3.AddItem "Peas"
ComboBox3.AddItem "Celery"
ComboBox2.AddItem "Carrots"
ComboBox1.AddItem " "
ComboBox1.AddItem "Potatos "
ComboBox1.AddItem "Onions"
ComboBox1.AddItem "Chocolate"
End Sub
TIA
JeffP.....