I am using C#.net Windows form , and I need to create a search textbox which will display combo box values (similar to google search);
The values displayed in the combo box will be values from the SQL 2005 database (example the user is searching on FirstName, the combobox will display all firstnames, which get filtered as the user types in more letters…. if user is searching on LastName, the combo box displays all LastName values in the database.. etc)
Any ideas how to go about this task?
This is a solution from the web that does do what you desire but have the negative effect to load everything from the start instead of doing small queries.