Example #1
0
        private void btnLiquidar_Click(object sender, EventArgs e)
        {
            this.Enabled = false;
            GestionLiquidacionConceptos screenLiquidar = new GestionLiquidacionConceptos(this, _empresa, _legajo, false);


            screenLiquidar.Show();
        }
Example #2
0
        private void btnEditar_Click(object sender, EventArgs e)
        {
            this.Enabled = false;
            GestionLiquidacionConceptos screenLiquidar = new GestionLiquidacionConceptos(this, _empresa, _legajo, true);

            //screenLiquidar.MdiParent = this.Index.ParentForm;

            screenLiquidar.Show();
        }