If you go into the VBA development window and hit F2, you will see a list of VBA Excel objects on the left. If you have a combobox defined in your code then you will see ComboBox in the list. If you click on it, then the window to the right will show all attributes, methods, and events available for the ComboBox.
To populate a combobox, use the Add method:
cb.Add "Here's an item to add"
The attribute LinkedCell specifies the linked cell
cb.LinkedCell = Sheet1.Range("A1")
For the events (such as Change, Click), use the form
where cb is the name of your combobox.
You can also link a range to the list with the ListFillRange attribute, if you have the list defined in a worksheet someplace.
Hopefully this gets you started. More specific questions will get more specific answers.
Bookmarks