如何遍历窗体中某一类控件如EDIT ,DELPHI(100分)

  • 主题发起人 主题发起人 Fucool
  • 开始时间 开始时间
F

Fucool

Unregistered / Unconfirmed
GUEST, unregistred user!
如何遍历窗体中某一类控件如EDIT
谢谢....
 
for i:=0 to ComponentCount-1 do
if (Components is TXXX) then
 
for i:=0 to ComponentCount-1 do
if (Components is TXXX) then
加一个 (Components as TXXX).Caption := ...
 
For i:=0 to componentcount-1 do
if (Component is TLabelededit) then
begin
(controls as TLabelededit).Color:=colorbox1.Selected ;
end
else begin
showmessage('对不起,没有相关的控件。');
end;

还不能通过,为什么
 
多人接受答案了。
 
后退
顶部