I have the following code
What i want to do is showing the TextBox's auto complete list programmatically not when typing in the TextBox
Code:
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
TextBox1.AutoCompleteMode = AutoCompleteMode.Suggest
TextBox1.AutoCompleteSource = AutoCompleteSource.CustomSource
Dim ac As New AutoCompleteStringCollection
ac.Add("this")
ac.Add("is")
ac.Add("how")
ac.Add("that")
ac.Add("these")
ac.Add("thank")
TextBox1.AutoCompleteCustomSource = ac
End Sub