起步软件技术论坛-X3

 找回密码
 立即注册
搜索
查看: 115|回复: 4

【搞定】控件类别判定

[复制链接]
发表于 2007-7-18 17:33:12 | 显示全部楼层 |阅读模式
根据需要设置只读属性,以下代码为何总是不成立?在DELPHI中类似代码是可行的。
var i:integer;
begin
  for i:=0 to self.ControlCount-1 do
    begin

      if ( Controls  is TDataEdit ) then
         (Controls as TDataEdit).ReadOnly:=Value;
      if (Controls  is TDataLocateComboBox) then
        (Controls as TDataLocateComboBox).Enabled:=not Value;
      if(Controls  IS TDateTimePicker) THEN
         (Controls as TDateTimePicker).Enabled:=not Value;
    end;
end;
回复

使用道具 举报

发表于 2007-7-18 18:04:59 | 显示全部楼层
我测试可以的啊,你那怎么不成立了?
回复 支持 反对

使用道具 举报

发表于 2007-7-20 14:51:13 | 显示全部楼层
??
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-7-20 17:04:44 | 显示全部楼层
搞定,改用for i:=0 to ComponentCount-1 do
    begin
      if ( Components  is TDataEdit ) then
         (Components as TDataEdit).ReadOnly:=Value;
      if (Components  is TDataLocateComboBox) then
        (Components as TDataLocateComboBox).Enabled:=not Value;
      if(Components  IS TDateTimePicker) THEN
         (Components as TDateTimePicker).Enabled:=not Value;
    end;就可以了。
回复 支持 反对

使用道具 举报

发表于 2007-7-20 17:42:53 | 显示全部楼层
好的,谢谢反馈,结贴了。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Justep Inc.

GMT+8, 2025-1-12 21:38 , Processed in 0.035485 second(s), 15 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表