
For a bind combo box with display member and value member set
You don't say whether you're create a windows app or a web app, and
the answer is different. For a Web app, it's easy. You can use the
FindByValue or FindByText methods to look up items in a list or combo
box.
For Windows forms, it's a bit more complicated, because the items in
the list can be of any type. You'll need to provide your own search
mechanism, in that case. -- Ken
On Sat, 23 Feb 2002 15:52:01 +0530, "Devesh Aggarwal"
Quote:
>How to select a particular item in a combo list by providing a value member.
>By providing the display member we can use find string property to find and
>select the particular item.
>But what if the selection is to be done by passing a value member and not by
>display member.
>Thanks
>Darshana / Devesh