Combo-Box List

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can't get it. Inserted a Combo-Box in a Word Document. Just want a selection for "Y" or "N"
Used "AddItem" in VB
Private Sub ComboBox1_Change(
ComboBox1.AddItem "Y
ComboBox1.AddItem "N
End Su
Everything shows up fine and works UNLESS the user decides to change their answer; then their choice is added to the dropdown list EVERY time they change thier selection. Madness
Ideas
Thanks
 
A combo box permits user input. You want just a list box.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

Blinded-by-Science said:
Can't get it. Inserted a Combo-Box in a Word Document. Just want a selection for "Y" or "N".
Used "AddItem" in VBA
Private Sub ComboBox1_Change()
ComboBox1.AddItem "Y"
ComboBox1.AddItem "N"
End Sub
Everything shows up fine and works UNLESS the user decides to change their
answer; then their choice is added to the dropdown list EVERY time they
change thier selection. Madness!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

User From Combo box help 1
ComboBox Help 1
ComboBox with VBA 0
list box remove item by combobox 4
Combox In Form 5
How to make Combo Boxes not duplicate options 1
excel sheet with control combobox 3
Combo Boxes 2

Back
Top