Click here to Skip to main content
15,879,535 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello

I have combined two combo boxes but I need to combine them like this flow



then select item type -- AA, BB, CC


after that in third combo it should list in description of items regarding

AA - abdbdbfbd
BB - dhjhdfdhf


C#
private void cmbItemType_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (cmbItemType.SelectedValue != null && cmbWharehouse.SelectedValue != null)
            {
                loadGrid(cmbWharehouse.SelectedValue.ToString(), cmbItemType.SelectedValue.ToString());
            }
        }



load the combo
XML
private void loadItemTypeCombo()
        {
            List<Entity.beanItem> _list = new List<Entity.beanItem>();
            _list = _brItemType.getItem();

            this.cmbItem.ValueMember = "TYPE";
            this.cmbItem.DisplayMember = "DESCRIPTION";
            this.cmbItem.DataSource = _list;

        }



public class brItem
{

Dataaccess.DAItem _da = new Dataaccess.DAItem();
public List<entity.beanitem> getItem()
{
List<entity.beanitem> _list = new List<entity.beanitem>();
try
{

DataSet ds = _da.getItem();
if (ds != null)
{
Entity.beanItem _bnnew = new Entity.beanItem();

_bnnew.ITEMCODE = "ALL";
_bnnew.TYPE = "ALL";
_bnnew.DESCRIPTION = "ALL";

_list.Add(_bnnew);

foreach (DataRow dr in ds.Tables[0].Rows)
{
Entity.beanItem _bn = new Entity.beanItem();

_bn.ITEMCODE = dr["ITEMCODE"].ToString();
_bn.DESCRIPTION = dr["DESCRIPTION"].ToString();
_bn.TYPE = dr["TYPE"].ToString();

_list.Add(_bn);

}

}

}
catch (Exception)
{

throw;
}

return _list;
}
Posted
Comments
JamesHurst 20-Feb-14 18:25pm    
Please do your answerers a courtesy, and state in your subject-line and at the beginning of your question: what technology or platform you're talking about! Your answer will be totally different, if you're refering to WPF, vs Windows Forms, vs ASP.NET, or JavaScript, etc.
agent_kruger 21-Feb-14 4:02am    
please use improve your question and reframe it as it is not understandable.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900