Jump to content
Fórum Script Brasil
  • 0

Preenchimento De Campos Em Um Db?


Guest RafaX

Question

Guest RafaX

Amigos,

Sou iniciante em Delphi, e gostaria d saber c tem geito, e c tiver como fazer que um campo tipo String d um DB em Paradox de tamanho 18 ser preenchido totalmente,

como exemplo, tenho um campo codigo, com o tamanho maximo 10 , na hora d preencher o campo, c por exemplo fosse digitado 1, gostaria que fosse preenchido com 0 até o limite do campo, armazenando o valor 0000000001.

Valeu...

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Cria uma função, que conta os caracteres. Aí vai um exemplo

function FormatNumber(InitialNumber:string;NumberOfCharacters:integer;DefaultNumber:string):string;

var i:integer;

begin

showmessage(inttostr(Length(InitialNumber)));

for i:= Length(InitialNumber) to NumberOfCharacters do

begin

InitialNumber := DefaultNumber + InitialNumber;

end;

Result := InitialNumber;

end;

(O código tava identado mas num sei porque sumiu!)

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