COMBO BOXES

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

Guest

I am totally stumped by this. I am trying to create a combo box that when I
click on it, it will show me a lfrop down list of "A", "B", "c" AND "D" for
me to pick one. I cannot even seem to get started the drop down list keeps
coming up blank?
Hope someone can help me.
 
Hi

or is the combo box on a userform? in which case you'll need to add code
like this to the form's initalization event

userform1.combobox1.additem "A"
userform1.combobox1.additem "B"
userform1.combobox1.additem "C"
userform1.combobox1.additem "D"

Cheers
JulieD
 

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