本文介绍了获取所选项目的价值在列表框中的字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图让使用下面的代码在列表框中选定项的值,但它总是返回空字符串。
I am trying to get the value of the selected item in the listbox using the code below, but it is always returning null string.
DataSet ds = searchforPrice(Convert.ToString(listBox1.SelectedItem));
在这里,我试图通过所选项目的值作为字符串的方法searchforPrice从retrive数据数据库。
Here I am trying to pass the value of selected item as string to method searchforPrice to retrive dataset from the database.
我怎样才能retrive所选项目的值作为字符串?
How can i retrive the value of selected item as string?
我将项目添加到列表框中从反过来从数据库加载的项目组合框
I am adding items to listbox from combo box which in turn loads the items from the database.
listBox1.Items.Add(comboBox2.Text);
有人已经回答了这个..
Anybody has answer for this..
推荐答案
如果您想检索项的显示文本,使用的方式:
If you want to retrieve the display text of the item, use the GetItemText
method:
string text = listBox1.GetItemText(listBox1.SelectedItem);
这篇关于获取所选项目的价值在列表框中的字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!