private void btnEliminar_Click(object sender, EventArgs e) { if (dataGridView2.SelectedRows.Count > 0) { idProducto = dataGridView2.CurrentRow.Cells["Id"].Value.ToString(); objetoCN.Eliminar(idProducto); MessageBox.Show("Eliminado correctamente"); MostrarProductos(); } }
private void btnEliminar_Click(object sender, EventArgs e) { if (dgvProd.SelectedRows.Count > 0) { idProd = dgvProd.CurrentRow.Cells["Id"].Value.ToString(); _Crud.Eliminar(idProd); MessageBox.Show("Eliminado correctamente"); MostrarProdcs(); } else { MessageBox.Show("seleccione una fila por favor"); } }
private void btn_ELIMINAR_P_Click(object sender, RoutedEventArgs e) { if (dgvProductos.SelectedItem == null) { MessageBox.Show("Verifique si se selecciono algún campo"); } else { objetoCN.Eliminar(idProducto); MessageBox.Show("Se ha eliminado correctamente"); MostrarProductos(); limpiarForm(); } }
private void btn_ELIMINAR_P_Click(object sender, RoutedEventArgs e) { if (dgvProductos.SelectedItem == null) { MessageBox.Show("Verifique si se selecciono algún campo"); } else { objetoCN.Eliminar(idProducto); MessageBox.Show("Se ha eliminado correctamente"); dgvProductos.SetBinding(ItemsControl.ItemsSourceProperty, new Binding { Source = new DataTable() }); limpiarForm(); } }
private void btnEliminar_Click(object sender, EventArgs e) { try { DialogResult Opcion; Opcion = MessageBox.Show("Realmente Desea Eliminar el producto", "Peluqueria Caetano", MessageBoxButtons.OKCancel, MessageBoxIcon.Question); if (Opcion == DialogResult.OK) { CN_Productos.Eliminar(this.IdProducto); this.MostrarProductos(); this.MensajeOk("Se elimino de forma correcta el producto"); } } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } // this.Close(); }
private void btnEliminar_Click(object sender, EventArgs e) { if (dataGridView1.SelectedRows.Count > 0) { try { idProducto = dataGridView1.CurrentRow.Cells["Id"].Value.ToString(); objetoCN.Eliminar(idProducto); MessageBox.Show("Se ha eliminado correctamente"); MostrarProductos(); } catch (Exception) { MessageBox.Show("No se pudo eliminar"); } } else { MessageBox.Show("No ha seleccionado un fila completa"); } }