this is a function for retrive two field in sql to combobox : Code :
public void FillCmbKala() { cmbKala.Items.Clear();
The thing you are selecting IS a DataRowView. You should select the id of the item or the text instead right? Like string str= cmbKala.SelectedItem.Text or string str= cmbKala.SelectedItem.Value?