Re: [delphi-br] duvidas sobre strings

2008-07-25 Por tôpico Nicolas
; Break; end; end; []s Alexandre - Original Message - From: Rubem Nascimento da Rocha To: delphi-br@yahoogrupos.com.br Sent: Friday, July 25, 2008 3:43 PM Subject: RE: [delphi-br] duvidas sobre strings Em qual unit tá definida essa função? Já revirei o help

RE: [delphi-br] duvidas sobre strings

2008-07-25 Por tôpico Rubem Nascimento da Rocha
Em qual unit tá definida essa função? Já revirei o help do Delphi de cabo a rabo e num achei nada! Sds. To: delphi-br@yahoogrupos.com.br From: [EMAIL PROTECTED] Date: Fri, 25 Jul 2008 15:39:42 -0300 Subject: Re: [delphi-br] duvidas sobre strings Ops, é

Re: [delphi-br] duvidas sobre strings

2008-07-25 Por tôpico Nicolas
Ops, é isnumeric( ) alexandre - Original Message - From: fabio giro To: delphi-br@yahoogrupos.com.br Sent: Friday, July 25, 2008 3:32 PM Subject: Re: [delphi-br] duvidas sobre strings Onde está a função IsNumber? --- Em sex, 25/7/08, Nicolas <[EMAIL PROTEC

Re: [delphi-br] duvidas sobre strings

2008-07-25 Por tôpico fabio giro
Onde está a função IsNumber? --- Em sex, 25/7/08, Nicolas <[EMAIL PROTECTED]> escreveu: De: Nicolas <[EMAIL PROTECTED]> Assunto: Re: [delphi-br] duvidas sobre strings Para: delphi-br@yahoogrupos.com.br Data: Sexta-feira, 25 de Julho de 2008, 14:11 e eu ainda acrescentaria:

Re: [delphi-br] duvidas sobre strings

2008-07-25 Por tôpico Nicolas
e eu ainda acrescentaria: if (isnumber(Edit1.text) ) and (Length(Edit1.text)=Edit1.MaxLenght) then showmessage('é igual´); []s alexandre - Original Message - From: Luciano Calenzani Simões To: delphi-br@yahoogrupos.com.br Sent: Friday, July 25, 2008 1:47 PM Subject: R

Re: [delphi-br] duvidas sobre strings

2008-07-25 Por tôpico Consultores Software
for i := 1 to Length(Edit.Text) do begin if not (ord(Edit.Text[i]) in [48..57]) then // 0 a 9 em ASCII begin ShowMessage('Caractere não numérico: '+Edit.Text[i]); break; end; end; 2008/7/25 Leonardo Baldino <[EMAIL PROTECTED]>: > eu tenho um edit e eu preciso verificar se tod