(データベースに追加して 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
コンボボックスのアイテムはアルファベット順にソートされているため、最後のインデックスではなく、リストのどこにでもある可能性があります。