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!
 
Back
Top