本文介绍了如何从DataBase绑定组合框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用下面的代码,但不绑定组合框中的数据。请更正。
I am using the code below, but not bind the Data in Combo Box. Please correct it.
str = "select ItemCode,it_name from Items";
com = new SqlCommand(str, con);
ad = new SqlDataAdapter(com);
ds = new DataSet();
ad.Fill(ds, "Items");
cmbItems.ValueMember = "ItemCode";
cmbItems.DisplayMember = "it_name";
cmbItems.DataSource = ds;
推荐答案
cmbItems.DataSource = ds.Tables["Items"];
祝你好运。
Good luck.
这篇关于如何从DataBase绑定组合框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!