将数据从数据库添加到组合框
我的数据库中有一个表,其中有一列名为“Siniflar”。我想将该表上的所有数据添加到组合框中。首先,我将数据放入 siniflarDataGridView 中,并使用“for .. next”将它们一一添加到组合框中。有没有更简单的方法将数据添加到组合框?
I have a table that has one column named "Siniflar" in my database. I want to add all the data on that table to combobox. First i put the data to siniflarDataGridView and with "for .. next" i add them to combobox one by one. Is there easier way to add the data to combobox?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
适当设置组合框的 DataSource DisplayMember 和 ValueMember 属性。
如果您向我们展示了一些代码,可能会更具体
Set the combox's DataSource DisplayMember and ValueMember properties appropriately.
If you showed us some of your code one could be more specific