public void tipoBoton(DataGridViewCellEventArgs e) { if (e.ColumnIndex == btnUpdate.Index) { frmInsertarDescuentos frm = new frmInsertarDescuentos(); frm.MdiParent = this.MdiParent; frm.WindowState = FormWindowState.Maximized; frm.Show(); frm.TipoInsercion = 1; frm.pkDescuento = tblDescuentos.Rows[e.RowIndex].Cells[0].Value.ToString(); frm.Nombre = tblDescuentos.Rows[e.RowIndex].Cells[1].Value.ToString(); frm.FechaInicio = tblDescuentos.Rows[e.RowIndex].Cells[2].Value.ToString(); frm.FechaFin = tblDescuentos.Rows[e.RowIndex].Cells[3].Value.ToString(); frm.Descuento = tblDescuentos.Rows[e.RowIndex].Cells[4].Value.ToString(); frm.Descripcion = tblDescuentos.Rows[e.RowIndex].Cells[5].Value.ToString(); this.Dispose(); } if (e.ColumnIndex == btnEliminar.Index) { if (MessageBox.Show("Esta seguro de eliminar este registro?", "Eliminar Registro", MessageBoxButtons.YesNo) == DialogResult.Yes) { if (MessageBox.Show("Esta totalmente seguro?", "Eliminar Registro", MessageBoxButtons.YesNo) == DialogResult.Yes) { int pkDescuento = Convert.ToInt16(tblDescuentos.Rows[e.RowIndex].Cells[0].Value.ToString()); DescuentoBLL.DeleteDescuento(pkDescuento); MessageBox.Show("Registro eliminado satisfactoriamente"); this.cargarDatos(); } } } }
private void menuAgregarDescuento_Click(object sender, EventArgs e) { frmInsertarDescuentos frm = new frmInsertarDescuentos(); frm.MdiParent = this; frm.WindowState = FormWindowState.Maximized; frm.MaximizeBox = false; frm.Show(); this.DisposeAllButThis(frm); }