I want UltraCombo to have intellisense using Database table or a dataset. How can i achieve this.
The AutoCompleteMode property has settings (see 'Suggest' and 'SuggestAppend') which cause the dropdown to appear automatically with only the values that begin with the text typed by the user. The source for these values, however, is the control's data source, so if you are looking to display values from a different table, you can't.
Thanks for your reply. What if i want intellisense not just that 'starts with' but one 'that contains' .. i mean if i type 'he' i should get 'the' and 'hello' both in the list ..