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
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.
Hi Mike, when i look in the Ultracombo i have for example the following number 929191when i enter it in my textbox and set the value of the combo nothing happens. it shows me the value and thats it.no jump to the correct rowi set Me.cboaccount.Value = Me.txtaccount.Text.Trim