不好意思,没分了还问问题!!(0分)

  • 主题发起人 主题发起人 风中的狼
  • 开始时间 开始时间

风中的狼

Unregistered / Unconfirmed
GUEST, unregistred user!
这样的一段程序:
Var
I:Integer;
Begin
For I:=0 To Panel1.ComponentCount-1 Do
Begin
If
Panel1.ComponentCount is TFlatcheckBox
Then
TFlatCheckBox(Panel1.ComponentCount).Enabled:=False;
End;
End;
出错提示是“Array Typerequired”
请问该怎么修改!
 
错误信息:Panel1.ComponentCount应该是数组
 
问题解决了!
把ComponentCount改成ControlCount就好了!
谢谢你,兄弟!
 
Var
I:Integer;
Begin
For I:=0 To Panel1.ComponentCount-1 Do
Begin
If
Panel1.panel1.Components is TFlatcheckBox
Then
TFlatCheckBox(Panel1.panel1.Components).Enabled:=False;
End;
End;
 
不会吧,刚发出就解决了。呵呵
 

Similar threads

S
回复
0
查看
915
SUNSTONE的Delphi笔记
S
S
回复
0
查看
894
SUNSTONE的Delphi笔记
S
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部