PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 25 → Wd Printing in wlanguage
Wd Printing in wlanguage
Iniciado por amarildo, mar., 06 2015 9:10 AM - Sem resposta
Membro registado
535 mensagems
Popularité : +14 (14 votes)
Publicado em março, 06 2015 - 9:10 AM
http://windevdesenvolvimento.blogspot.com.br/2015/03/windev-printing-in-wlanguage.html

Nesse blog e video estou comecando a mostrar comandos de impressao

_texto_1 is string = "Impressao dessa linha"
_texto_2 is string = "Outra linha"

iPreview(IMPRESSORA_OPCAO)

// Criar uma fonte Helvetica
iCreateFont(1,12,iNormal,iSwiss)
iCreateFont(2,10,iNormal,iRoman)

// Imprimir o texto
iPrint(iFont(1) + _texto_1 + "Imprime com fonte 1")
iPrint(iFont(2) +_texto_2 + "Imprime com fonte 2")

iEndPrinting()