求助,怎么使一些 checkbox 受控制,一些 checkbox 不受控制呢?,谢谢! |
答題得分者是:cashxin2002
|
lsh998
中階會員 發表:163 回覆:138 積分:60 註冊:2005-01-07 發送簡訊給我 |
procedure TClassKaoQinForm.Button1Click(Sender: TObject);
var
checkboxitems:integer;
mustOndutyaDays:string;
begin
for checkboxitems:=2 to ClassKaoQinForm.componentcount-1 do
begin
if (ClassKaoQinForm.components[checkboxitems] is TCheckBox) and (TCheckBox(ClassKaoQinForm.components[checkboxitems]).Checked) then
begin mustOndutyaDays:=mustOndutyaDays inttostr(TCheckBox(ClassKaoQinForm.components[checkboxitems]).Tag) '##'; end; end;
end; 问题是:ClassKaoQinForm 有 8个 checkbox ,还很有多别窗体, 我希望 checkbox1 和 checkbox2 不受 procedure TClassKaoQinForm.Button1Click(Sender: TObject);
var
checkboxitems:integer;
mustOndutyaDays:string;
begin
for checkboxitems:=2 to ClassKaoQinForm.componentcount-1 do
begin
if (ClassKaoQinForm.components[checkboxitems] is TCheckBox) and (TCheckBox(ClassKaoQinForm.components[checkboxitems]).Checked) then
begin mustOndutyaDays:=mustOndutyaDays inttostr(TCheckBox(ClassKaoQinForm.components[checkboxitems]).Tag) '##'; end; end;
end; 的控制,能不能实现啊?
像我上面的程序 checkbox1 和 checkbox2 是有可能受其控制的! 请各位大哥,教我一种方法啊? 谢谢!
|
cashxin2002
版主 發表:231 回覆:2555 積分:1937 註冊:2003-03-28 發送簡訊給我 |
您好﹗ 不懂為何要在迴圈中將起始值設為2﹐那樣就會遺漏檢查兩個元件了﹒改成如下試試﹕
procedure TClassKaoQinForm.Button1Click(Sender: TObject); var checkboxitems:integer; mustOndutyaDays:string; begin for checkboxitems:=0 to ClassKaoQinForm.componentcount-1 do begin if (ClassKaoQinForm.components[checkboxitems].ClassType=TCheckBox) and (TCheckBox(ClassKaoQinForm.component[checkboxitems]).Checked) and (ClassKaoQinForm.components[checkboxitems].Name<>'CheckBox1') and (ClassKaoQinForm.components[checkboxitems].Name<>'CheckBox2') then begin mustOndutyaDays:=mustOndutyaDays+inttostr(TCheckBox(ClassKaoQinForm.components[checkboxitems]).Tag)+'##'; end; end; end;================================= 有空來瞅瞅我﹗因為我是您的朋友﹐有您真好﹗ ================================ 發表人 - cashxin2002 於 2005/05/21 15:45:41
------
忻晟 |
lsh998
中階會員 發表:163 回覆:138 積分:60 註冊:2005-01-07 發送簡訊給我 |
|
cashxin2002
版主 發表:231 回覆:2555 積分:1937 註冊:2003-03-28 發送簡訊給我 |
|
Arlung Miao
初階會員 發表:9 回覆:44 積分:25 註冊:2004-08-25 發送簡訊給我 |
var i: Integer; oTmp: TComponent; ... begin ... with ClassKaoQinForm do begin for i := 0 to ComponentCount - 1 do begin oTmp := Components[i]; if (oTmp is TCheckBox) and TCheckBox(oTmp).Checked then begin if (UpperCase(oTmp.Name) <> 'CHECKBOX1') and (UpperCase(oTmp.Name) <> 'CHECKBOX2') then begin mustOndutyaDays:=mustOndutyaDays inttostr(TCheckBox(ClassKaoQinForm.components[checkboxitems]).Tag) '##'; end; end; end; end; |
lsh998
中階會員 發表:163 回覆:138 積分:60 註冊:2005-01-07 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |