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

42 Visitors Online


 
...die Eingabe in einem TEdit auf bestimmte Zeichen beschränken?
Autor: Rafael Giusti
[ Tip ausdrucken ]  

Tip Bewertung (2):  
     


{
  In this exemple, the only keys allowed are the
  same allowed in e-mail adresses.
}

procedure TForm1.Edit1KeyPress(Sender: TObject;
  var Key: Char);
const
  
AllowedChars: string = 'abcdefghijklmnopq' +
    'rstuvwxyz01234567_.@';
var
  
i: Integer;
  Ok: Boolean;
begin
  
i  := 0;
  Ok := False;
  { If you erase next line, user won't be able to type backspace }
  
if Key = #8 then Ok := True;
  repeat
    
i := i + 1;
    if Key = AllowedChars[i] then Ok := True;
  until (Ok) or (i = Length(AllowedChars));
  if not Ok then Key := #0;
end;


 

Bewerten Sie diesen Tipp:

dürftig
ausgezeichnet


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