whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

18 Visitors Online


 
...check for valid amount?
Autor: Simon Grossenbacher
Homepage: http://www.swissdelphicenter.ch
[ Print tip ]  

Tip Rating (3):  
     


// Überprüft, ob es sich um einen gültigen Geld Wert handelt

// Check if it's a valid money value


function isValidAmount(sData: string): Boolean;
var
  
nAmtlen: Smallint;  // used to find the length of amount field
  
nNodots: Smallint;  // used to find how many dots are in amount field
begin
  
nNodots := 0;
  Result  := False;
  for nAmtlen := 1 to Length(sData) do
  begin
    case 
sData[nAmtlen] of
      
'0'..'9': Result := True;         // checking for numbers only
      
'.': nNodots     := nNodots + 1;
      // incrementing nnodots variable when ever '.' is found
    
end;
  end;
  if (Pos('.', sData) = 0) then
  begin
    if 
(Length(IntToStr(StrToInt(sData))) > 5) then
      
Result := False
    else
      
Result := True;
  end
  else
  begin
    if 
Pos('.', sData) > 6 then
      
Result := False;
    if Length(Copy(sData, (Pos('.', sData) + 1), Length(sData))) > 2 then
      
Result := False;
  end;

  if ((Result = True) and (nNodots <= 1)) then
    
// checking field contains numbers and only one '.' separator
    
Result := True
  else
    
Result := False;
end;


procedure TForm1.Button1Click(Sender: TObject);
begin
  if not 
isValidAmount(trim(Edit1.Text)) then
    
ShowMessage(Edit1.Text + '  is not a Valid Amount');
  else
    
ShowMessage('Valid Amount');
end;


 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners