如果我将一个项目添加到数据绑定组合框(通过添加到数据库并刷新 TableAdapter),我该如何选择新添加的项目?
Private Sub button_Click(etc etc) etc
Dim frm As New FormName()
frm.ShowDialog()
'On this form I add an entry to the database
If frm.DialogResult = Windows.Forms.DialogResult.OK Then
'Refill TableAdapter
'Now I want to select the new item!
Combo.SelectedText = frm.TextBox.Text 'doesn't work - what's the best way to do this?
End If
End Sub
它不仅仅是最后一个索引,因为组合框项目按字母顺序排序,它可能位于列表中的任何位置。