Combo Box

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

Guest

I am having problems creating a combo box in word. I have created the box
and add items in the drop down. Every time i click the drop down arrow, the
items in the drop down duplicate. Please help
 
Hi =?Utf-8?B?S0pU?=,
I am having problems creating a combo box in word. I have created the box
and add items in the drop down. Every time i click the drop down arrow, the
items in the drop down duplicate.
You need to give us more information.

1. Version of Word

2. From which toolbar did you insert the combobox

3. If you're filling the combobox using VBA code, you need to copy the code
into your response. And in this case, you should re-post in a
developer/programming/vba group.

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 17 2005)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or reply
in the newsgroup and not by e-mail :-)
 
I apologize, but this is very new to me. I am using Word 2003. I insert a
Combo Box from the Control Toolbox. The following are the items I added:

Private Sub ComboBox1_DropButtonClick()
ComboBox1.AddItem "N/A"
ComboBox1.AddItem "Change"
ComboBox1.AddItem "Review"
ComboBox1.AddItem "Discuss"
End Sub
 
Hi =?Utf-8?B?S0pU?=,
I apologize, but this is very new to me. I am using Word 2003. I insert a
Combo Box from the Control Toolbox. The following are the items I added:

Private Sub ComboBox1_DropButtonClick()
ComboBox1.AddItem "N/A"
ComboBox1.AddItem "Change"
ComboBox1.AddItem "Review"
ComboBox1.AddItem "Discuss"
End Sub
You need to use the CLEAR method at the top of this procedure. ComboBox1.Clear is
the syntax, I believe.

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 17 2005)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or reply in
the newsgroup and not by e-mail :-)
 

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

Back
Top