Can BindingSource.find be used for multi-row columns?

Can BindingSource.find be used on multi-row columns?

I have treeview and combobox. The combobox contains an identifier that is used to build the tree structure. When I select a node in the tree view, I want to display the detail / child information for the id from the dropdown and the tag / id value from the Node tree.

What's the best way to do this? I tried to use controls bound to the binding source. I want to change the position of the binding source, but I need to find the binding source for the value from the combo as well as the tree node I just selected ?????

0


source to share


1 answer


I don't know if this is the best way to do what I was trying to accomplish, but the BindingSource.Filter method works great for my scenario.



0


source







All Articles