private void btn_eliminar_Click(object sender, EventArgs e) { try { if (dgv_prov.SelectedRows.Count == 1) { int id = Convert.ToInt16(dgv_prov.CurrentRow.Cells[0].Value); negocio n = new negocio(); n.EliminarProveedor(id); } else { MessageBox.Show("Debe de seleccionar una fila"); } } catch (Exception ex) { MessageBox.Show(ex.ToString()); } }