日期:2013-08-16  浏览次数:21454 次



1. 所有的Edit 都只允?S??入?底郑?即只可以??入一次小?迭c
2. 不想?Χ噙_?资???的Edit 都??onKeyPress 事件

那你就??一??,其它的全部在Object Inspector 中指向?@一??:
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
var
IntCompIdx: Integer;
stText: string;
begin
if (Ord(Key) = 46) then
begin
IntCompIdx := (Sender as TEdit).ComponentIndex;
stText := TEdit(Components[IntCompIdx]).Text;
if Pos('.', stText) > 1 then
Key := #0;
end;
end;

如果不?X得?y看的??也可以不用??量:
if (Ord(Key) = 46) and
(Pos('.', TEdit(Components[(Sender as TEdit).ComponentIndex]).Text) > 1)then
Key := #0;