Hi Jason Honingford,
Based on my understanding, you said that when you type "stre" then "Street" was selected, and hit Tab, so the ComboBox lose the focus and the "Straight" was selected. You want the "Street" to be selected, right ? If I have misunderstood you, please feel free to tell me, thanks.
After several times testing, I really cannot reproduce your issue. The following is the code I used to do the testing.
Code Snippet
Public Sub New()
InitializeComponent()
img = Properties.Resources.Destination
Me.comboBox1.DisplayMember = "Name"
Me.comboBox1.ValueMember = "ID"
Me.comboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend
Me.comboBox1.DropDownStyle = ComboBoxStyle.DropDownList
Me.comboBox1.DataSource = LoadData()
End Sub
Private Function LoadData() As DataTable
Dim dt As New DataTable("TestTable")
dt.Columns.Add("ID", GetType(Integer))
dt.Columns.Add("Name", GetType(String))
dt.Rows.Add(1, "Roy")
dt.Rows.Add(2, "Street")
dt.Rows.Add(3, "Strange")
dt.Rows.Add(4, "Solid")
Return dt
End Function
Regards,
Roy Zhou