Podem me ajudar como devo informar as tags. veja o meu código em VB6, se alguém puder me auxialiar o que devo informar nestas tags. pois ja tentei varias formas e nao da certo.
'faturas
Print #1, "[Fatura]"
Print #1, "nFat=" + nfe_ide(6) '727
Print #1, "vOrig=" + nfe_tot(13) '152.0000
Print #1, "vDesc=" + "" '
Print #1, "vLiq=" & nfe_tot(13) 152.0000
'duplicatas nao tem nenhuma
x = 0
For x = 1 To cob_numero_parcelas
Print #1, "[Duplicata" & Format(x, "000") & "]"
Print #1, "nDup=" + Format(nfe_cob(x, 3), "000")
Print #1, "dVenc=" + Format(nfe_cob(x, 4), "dd/mm/yyyy")
Print #1, "vDup=" + nfe_cob(x, 5)
Next x
'[PAG001 NÃO TEM NENHUMA TAMBÉM
x = 0
For x = 1 To cob_numero_parcelas
Print #1, "[PAG" & Format(x, "000") & "]"
Print #1, "tpag=" & nfe_cob(x, 6) 'tipo de pagamento: Dinheiro, Cheque, Cartão, ...
Print #1, "vPag=" & nfe_cob(x, 5) ' valor total da nota
Print #1, "tpIntegra="
Print #1, "CNPJ="
Print #1, "tBand="
Print #1, "cAut="
Print #1, "vTroco="
Next x