Hi,I'd like to add a combox to a Toolbar I have created. I understand how to add items to the toolbar, but I'm having difficulty understanding how to add a combobox (like the one you might see on the Edit Menu). I'll need the combobox to have a list of items in it.This is what I'm trying to do, but it's not working: public DSM_Toolbar()
{
//
// TODO: Define your toolbar here by adding items
//
AddItem("DSM_DocumentManager.DocumentManager");
AddItem("DSM_Symbology.Symbology");
AddItem("DSM_QCTool.QCTool");
BeginGroup(); //Separator
AddItem("DSM_CalcMetric.CalcMetric");
AddItem("DSM_GIFAngle.GIF_Angle");
AddItem("DSM_Attribute_Update.AttributeUpdater");
//The ComboBox
ComboBox combo = new ComboBox();
combo.Items.Add("25");
combo.Items.Add("50");
AddItem(combo); //this wont work though....how do I do this???
}