USUÁRIO:      SENHA:        SALVAR LOGIN ?    Adicione o VBWEB na sua lista de favoritos   Fale conosco 

 

  Fórum

  Visual Basic
Voltar
Autor Assunto:  Imprimir texto justificado
Horta
RECIFE
PE - BRASIL
Postada em 18/03/2007 12:09 hs            

Como faço para imprimir ( object printer ) texto justificado entre margens préviamente defenidas


Alguem me pode ajudar

Obr
     
Amilton Lira
NATAL
RN - BRASIL
Postada em 24/03/2007 19:51 hs            
'A função

Function WordWrap(ByVal Text As String, ByVal LineLength As Integer) As String
Dim look As String
Dim x As Long
Dim Y As Long
Dim eLine() As String
Dim tmp As String

eLine = Split(Text, vbCrLf)
If LineLength < 10 Then LineLength = 10
    For Y = 0 To UBound(eLine)
        Do While LineLength < Len(eLine(Y))
            DoEvents
                For x = LineLength To 1 Step -1
                    look = Mid(eLine(Y), x, 1)
                    Select Case look
                        Case " "
                          tmp = tmp & IIf(tmp > "", vbCrLf, "") & Trim(Left(eLine(Y), x))
                          eLine(Y) = Right(eLine(Y), Len(eLine(Y)) - x)
                          Exit For
                        Case Else
                          If x < (LineLength / 2) Then
                            tmp = tmp & IIf(tmp > "", vbCrLf, "") & Trim(Left(eLine(Y), LineLength - 1)) & "-"
                            eLine(Y) = Right(eLine(Y), Len(eLine(Y)) - (LineLength - 1))
                            Exit For
                          End If
                    End Select
            Next x
        Loop
        tmp = tmp & IIf(tmp > "", vbCrLf, "") & eLine(Y)
    Next Y
    WordWrap = tmp
End Function

'Como usar
Texto = WordWrap(TEXTO, Nº CARACTERES DESEJADOS)
Printer.Print Texto
Printer.EndDoc
 
OBS.: Esse Código não é meu, mas funciona legal, pelo menos na teoria(só observeu, não testei), a fonte é deste site;
     
Página(s): 1/1    


Seu Nome:

Seu eMail:

ALTERAR PARA MODO HTML
Mensagem:

[:)] = 
[:P] = 
[:(] = 
[;)] = 

HTML DESLIGADO

     
 VOLTAR

  



CyberWEB Network Ltda.    © Copyright 2000-2024   -   Todos os direitos reservados.
Powered by HostingZone - A melhor hospedagem para seu site
Topo da página