iDestination(iPDF) iPrint("") iPrint("") iPrint("Relatorio de Bancos") iPrint("") iHLine(0, iPageWidth()) iPrint("") iPrint(iXPos(1) + "Codigo" + iXPos(18) +"Nome") iHLine(0, 30) iPrint("") FOR EACH bancos iPrint(iXPos(1)+ NumToString(bancos.id_bancos,"06d") + iXPos(18) + bancos.nome) END iHLine(0, iPageWidth(), 2.5)
iPrint("") iPrint("Tipos Linhas - iDotted") iHLine(0, 30,iDotted) iPrint("") iPrint("iDotAndDash") iHLine(0, 40,iDotAndDash) iPrint("") iPrint("iDashed") iHLine(0, 50,iDashed)
iEndPrinting() ShellExecute(iLastFile())
// Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/11/aula-973-windev-relatorio-33-ihline.html
https://www.youtube.com/watch?v=92Ukxmarrk0
|