Jump to content
Fórum Script Brasil
  • 0

Como Tabulo Informações No Componente Memo


rafaelblanco

Question

Oi pessoal bom dia, estou com dificuldades pra tabular informações no componente memo: quero mostrar informações no esquema linha coluna.

em várias linhas do componente, como poderia tabular as informações de

entrada nele. Se alguém tiver um exemplo pra me mandar pode mandar

para o email, rlopes@info.campus2.br

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Você só tem que completar com espaços a parte que falta para que os dados cheguem a seus tamanhos máximos. Para isso, inclua o StrUtils na cláusula Uses e declare as seguintes funções:

function justr(s : string; tamanho : integer) : string;
var i : integer;
begin
    i := tamanho-length(s);
    if i>0 then
      s := DupeString(' ', i)+s;
    justr := s;
end;

function justl(s : string; tamanho : integer) : string;
var i : integer;
begin
    i := tamanho-length(s);
    if i>0 then
      s := s+DupeString(' ', i);
    justl := s;
end;
Depois, faça o teste:
var s : String;
    v : Real;
begin
  with memo1 do
  begin
    Font.Name := 'Courier New';
    Clear;
    s := 'teste';
    v := 1.34;
    Lines.Add(justl(s, 10) + justr(floattostr(v), 12));
    s := 'teste2';
    v := 35.41;
    Lines.Add(justl(s, 10) + justr(floattostr(v), 12));
  end;
end;

Sacou? wink.gif Pelo código acho que dá pra entender o que justl() e justr() fazem.

Graymalkin

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...