> I wonder if there is a built-in function or a better way to 
> test a string to
> see if its value is numeric then this:
> 
> function IsNumeric(sTemp: String; var bInteger: Boolean): Boolean;
> begin ...

Cancel that please. 

  Val(sTemp, dTemp, iCode);
  if iCode <> 0 then begin
    Result := False;
  end;

does what I need.

Thank you,
Sergei Stenkov

---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED] 
with body of "unsubscribe delphi"

Reply via email to