能否用一两条语句将一个FORM上所有的TEDIT控件的READONLY设置成TRUE?(0分)

  • 主题发起人 主题发起人 link
  • 开始时间 开始时间
for i:= Controls.Count-1do
if Controls is TLabel then

(Controls as TLabel).ReadOnly:=true;
 
才发现是0分,亏了...
 
Var i:integer ;
begin
for i:= 0 to ComponentCount-1do
if Components is Tedit then
(Components as Tedit).readonly := true ;
 
Tqz : 挺快的, :)
seasky : 太慢了 :((
 
对初学者有用,谢谢tgz!
for i:= Controls.Count-1do
有误.
 
Sorry,是ControlCount
 

Similar threads

回复
0
查看
804
不得闲
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部