Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
5549
Find in Ultracombo
posted

Hi, i bind a datatable to a ultracombo. in the datatable i have arround 10000 rows. i have a field account number.
on a winform i have a textbox where i enter a account number with this i want find it in the ultracombo (it exists) and go to the row and mark it as i normal selected .

is that possible

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi,

    If you know the value you want, then all you have to do is set the Value property of the UltraCombo to that value. You do not have to search the list and select the item - the UltraCombo will handle that for you when you set the Value.

    But... if you want to search the list, the easiest thing to do is cast the UltraCombo control to an IValueList and use the GetText method.

Children