当前位置:编程学习 > asp >>

Sender 的??用:所有Edit共用一???^?V格式

答案:

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;


上一个:研究心得------->CPU信息的获得,比较全面的
下一个:override deal with window closing in database application

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,