Jump to content
Fórum Script Brasil
  • 0

Relatorio Com Texto Na Vertical


Guest Helio Fonseca

Question

Guest Helio Fonseca

alguém pode me ajudar a fazer um relatorio com parte de texto na vertical, não é o formulario e sim o relatorio impresso.

Uso o QReport.

Mais informações.

No meu Relatorio é necessario que eu escreva na vertical, trata-se de um sistema escolar, e este relatorio é o Historico Escolar, onde possui as disciplinas no cabeçalho na vertical, pois como tem muita informações não da pra ser diferente,

sendo o que tinha agradeço a quem poder me ajudar.

Helio

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

amigo...ve se isto de ajuda...retirei do DtDelphi 2,7

Não testei..

813 - Imprimir Na Vertical No Quickreport

--------------------------------------------------------------------------------

procedure ImprimirNaVertical(AQuick: TQuickRep; ABanda: TQrBand;
  ATexto: string);
var
  lf: TLogFont;
  tf: TFont;
  xQrImage: TQrImage;
begin
  xQrImage := TQrImage.Create(AQuick);
  xQrImage.Parent := ABanda;
  xQrImage.Align := alLeft;
  xQrImage.Width := 10;
  xQrImage.BringToFront;
  with xQrImage.Canvas do
  begin
    Font.Name := 'Arial';
    Font.Size := 7;
    tf := TFont.Create;
    tf.Assign(Font);
    GetObject(tf.Handle, Sizeof(lf), @lf);
    lf.lfEscapement := 900;
    lf.lfOrientation := 450;
    tf.Handle := CreateFontIndirect(lf);
    Font.Assign(tf);
    tf.Free;
    TextOut(0, xQrImage.Height div 2, ATexto);
  end;
end;

--------------------------------------------------------------------------------

Enviada por: Adriano Santos

Um colaborador da DTDelphi 2.7

Colabore você com a próxima edição!

Espero ter ajudado.... biggrin.gif

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...