was ist neu ¦  programmier tips ¦  indy artikel ¦  intraweb artikel ¦  informationen ¦  links ¦  interviews
 sonstiges ¦  tutorials ¦  Add&Win Gewinnspiel

Tips (1541)

Dateien (137)
Datenbanken (90)
Drucken (35)
Grafik (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Mathematik (76)
Multimedia (45)
Oberfläche (107)
Objekte/
ActiveX (51)

OpenTools API (3)
Sonstiges (126)
Strings (83)
System (266)
VCL (242)

Tips sortiert nach
Komponente


Tip suchen

Tip hinzufügen

Add&Win Gewinnspiel

Werbung

56 Visitors Online


 
...auf eine gültige Menge überprüfen?
Autor: Simon Grossenbacher
Homepage: http://www.swissdelphicenter.ch
[ Tip ausdrucken ]  

Tip Bewertung (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;


 

Bewerten Sie diesen Tipp:

dürftig
ausgezeichnet


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