private void btnDel_Click(object sender, EventArgs e) { if (lvList.SelectedIndices.Count < 1) { MessageBox.Show(this, "Выберите элемент для удаления!", "Сообщение об ошибке", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } else { try { tableOperation.DelDogovor(lvList.SelectedIndices[0]); doVivod(tableOperation.getListOfDogovor()); } catch (Exception ex) { MessageBox.Show(this, "Ошибка соединения: +" + ex, "Сообщение об ошибке", MessageBoxButtons.OK, MessageBoxIcon.Error); } } }