如何将标题行动态添加到组合框?我有这个表格,我想用标题行动态填充那个combobox2。我到处搜索,找不到答案...对不起,我的英语不好。
我的代码:
OleDbcon.Close();
comboBox1.Items.Clear();
for (int i = 0; i < dt.Rows.Count; i++)
{
String sheetName = dt.Rows[i]["TABLE_NAME"].ToString();
sheetName = sheetName.Substring(0, sheetName.Length - 1);
comboBox1.Items.Add(sheetName);
comboBox2.Items.Add(****); // that I want do in it
}