Example #1
0
        private void btnImprimirCFe_Click(object sender, EventArgs e)
        {
            var xmlPath = Helpers.OpenFile("Arquivo Xml CFe (*.xml)|*.xml|Todo os Arquivos (*.*)|*.*");

            if (string.IsNullOrEmpty(xmlPath))
            {
                return;
            }

            acbrSat.ImprimirExtratoVenda(xmlPath);
            rtbRespostas.AppendLine("Impressão efetuada com sucesso.");
        }