i have a problem with C# code for combo box my code is here
cmbProjectName.Items.Clear();
if (obds.Tables.Count > 0 && obds.Tables[0].Rows.Count > 0)
{
for (int iCount = 0; iCount < obds.Tables[0].Rows.Count; iCount++)
{
cmbProjectName.Items.Add(obds.Tables[0].Rows[iCount]["Project_Name"].ToString());
}
}
Value Add in Combo Box but i will to add the index of this item my self for further operation on other search please suggest me...