Help with listbox displaymember...

F

frank

Hello All,
I know this is a re-post, but I didn't get any bites on my last post. So here goes again:

I have a listbox which is bound to a datatable. I have set the displaymember and valuemember and all works well:
the user dbl clicks an item in the list box, I use the valuemember to retrieve some values from the db. However, I would like
a label to display the displaymember value that was selected by the user. I am assuming this is a datarow(?).
How does one do this? Below is my code for populating the listbox:
Dim dtChgDept As New DataTable
daChgDept.Fill(dtChgDept)
lstChgDept.ValueMember = "dept_id"
lstChgDept.DisplayMember = "dept_name"
lstChgDept.DataSource = dtChgDept
How can I display the text value of the displaymember "dept_name" on a label??

Thanks in advance!

Frankie
--
 
G

Guest

Frankie,

The listbox's Text property should contain the displaymember of the selected
item.

So just assign the listbox's Text property to the label's Text property.

Kerry Moorman
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top