예제 #1
0
        private void btnNuevo_Click(object sender, EventArgs e)
        {
            frmmodificar modificar = new frmmodificar();

            globales.showModalReturning(modificar);
            frmConstanciaLicenciacs_Shown(null, null);
        }
예제 #2
0
        private void dtggrid_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            int c = e.RowIndex;

            if (c == -1)
            {
                return;
            }

            //inicio,FINAL,new_tipo,entrada,salida,cuenta,movimiento

            DataGridViewRow row   = dtggrid.Rows[c];
            string          folio = Convert.ToString(row.Cells[0].Value);


            frmmodificar modificar = new frmmodificar(folio);

            globales.showModal(modificar);
            frmConstanciaLicenciacs_Shown(null, null);
        }