Tag - AutoComplete

How to create AutoComplete Textbox in Windows Forms Application using C#.NET

I'll show you how to create AutoComplete Textbox in a Windows Forms Application This time we're going to get the data from MS Access Databaseso let's get starting! 1- Create Windows Forms Application.2- Add Textbox Control.3- Copy the below code into your form. AutoCompleteStringCollection stringCollection = new AutoCompleteStringCollection(); private void AutoCompleteTextBox() { OleDbConnection aConnection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\\Test.mdb"); ...