Ejemplo n.º 1
0
        private void metroGridCuenta_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            CuentaCorrienteForm frmcuenta = new CuentaCorrienteForm();

            frmcuenta.Cuit        = metroGridCuenta.CurrentRow.Cells["Cuit"].Value.ToString();
            frmcuenta.FormClosed += frmcuenta_FormClosed;

            frmcuenta.Show();
        }
Ejemplo n.º 2
0
        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            CuentaCorrienteForm CRORRIENTE = new CuentaCorrienteForm();

            CRORRIENTE.ShowDialog();
        }