private void btnNew_Click(object sender, EventArgs e) { Agregar agregarAsignacion = new Agregar(null); Tag = "I"; agregarAsignacion.BringToFront(); agregarAsignacion.FormClosed += new FormClosedEventHandler(A_FormClosed); agregarAsignacion.Show(); }
private void tblAsignacionesFilter_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { try { if (e.RowIndex >= 0) { CEAsignaciones asignacion = new CEAsignaciones { id = Convert.ToInt32(tblAsignacionesFilter.Rows[e.RowIndex].Cells["NUMERO"].Value), documento = tblAsignacionesFilter.Rows[e.RowIndex].Cells["DOCUMENTO"].Value.ToString(), nombreCompleto = tblAsignacionesFilter.Rows[e.RowIndex].Cells["NOMBRES"].Value.ToString(), fecha = tblAsignacionesFilter.Rows[e.RowIndex].Cells["FECHA"].Value.ToString(), asiTeclado = Convert.ToBoolean(tblAsignacionesFilter.Rows[e.RowIndex].Cells["TECLADO"].Value), asiMouse = Convert.ToBoolean(tblAsignacionesFilter.Rows[e.RowIndex].Cells["MOUSE"].Value), asiPuesto = Convert.ToBoolean(tblAsignacionesFilter.Rows[e.RowIndex].Cells["PUESTO"].Value), asiBase = Convert.ToBoolean(tblAsignacionesFilter.Rows[e.RowIndex].Cells["BASE"].Value), asiMaletin = Convert.ToBoolean(tblAsignacionesFilter.Rows[e.RowIndex].Cells["MALETIN"].Value), asiMorral = Convert.ToBoolean(tblAsignacionesFilter.Rows[e.RowIndex].Cells["MORRAL"].Value), asiCorreo = Convert.ToBoolean(tblAsignacionesFilter.Rows[e.RowIndex].Cells["CORREO"].Value), anulado = Convert.ToBoolean(tblAsignacionesFilter.Rows[e.RowIndex].Cells["ANULADO"].Value), observacion = tblAsignacionesFilter.Rows[e.RowIndex].Cells["OBSERVACIONES"].Value.ToString(), fechaModifi = tblAsignacionesFilter.Rows[e.RowIndex].Cells["FECHAMODIFI"].Value.ToString(), usuarioModifi = tblAsignacionesFilter.Rows[e.RowIndex].Cells["USUMODIFI"].Value.ToString() }; Agregar agregarAsignacion = new Agregar(asignacion); agregarAsignacion.TopLevel = false; agregarAsignacion.Dock = DockStyle.None; Controls.Add(agregarAsignacion); Tag = "C"; agregarAsignacion.Location = new Point(50, 50); agregarAsignacion.BringToFront(); agregarAsignacion.FormClosed += new FormClosedEventHandler(A_FormClosed); agregarAsignacion.Show(); } } catch (Exception ex) { MessageBox.Show("" + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }