contact me on [email protected] for custom software's.
Please share and like the video and subscribe the channel
If any question comment below
here is a code:
textBox1.AutoCompleteMode = AutoCompleteMode.Suggest;
textBox1.AutoCompleteSource = AutoCompleteSource.CustomSource;
AutoCompleteStringCollection col = new AutoCompleteStringCollection();
col.Add("I upload videos of difficult coding task");
col.Add("PLease subcribe my channel");
col.Add("Like and Share the video");
textBox1.AutoCompleteCustomSource = col;