Пример #1
0
        private void btnExtraer_Click(object sender, System.EventArgs e)
        {
            if (string.IsNullOrEmpty(txtRutaCarpeta.Text))
            {
                return;
            }

            oRespuesta   = new Respuesta();
            oExtraer     = new Operacion();
            facturasGrid = new List <ComprobanteXML>();
            oRespuesta   = oExtraer.EstablecerCarpeta(txtRutaCarpeta.Text);


            lblEstado.Text = oRespuesta.Mensaje;

            facturasGrid = oExtraer.ArchivosXmlaProcesarObtener(txtRutaCarpeta.Text);


            frmDesplegarInformacion of = new frmDesplegarInformacion();

            of.CargarFacturas(facturasGrid);


            of.Show();
        }