Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

COMBO BOX

Status
Not open for further replies.

100dtl

Programmer
Aug 18, 2003
313
GB
How do i add a combo box to a cell in excel?

I've draw the control box and entered

Private Sub ComboBox1_Change()

'Add list entries to combo box. The value of each
'entry matches the corresponding ListIndex value
'in the combo box.
ComboBox1.AddItem "To Do" 'ListIndex = 0
ComboBox1.AddItem "Ongoing"
ComboBox1.AddItem "Ready For Peer Unit"
ComboBox1.AddItem "Ready For System Test"
ComboBox1.AddItem "System Test Passed"

End Sub

But i get it listed four times when i run it? anyone got any examples
 
ok then, Combo box in a cell? is it possible?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top