C
Carem
Unregistered / Unconfirmed
GUEST, unregistred user!
目的:希望点击选定,之后执行
GroupBox5.Enabled :=true;
button5.Enabled :=true;
再次点击(取消选定)之后执行
GroupBox5.Enabled :=false;
button5.Enabled :=false;
procedure TForm1.CheckBox1Click(Sender: TObject);
begin
if checkbox1.Checked=true then
GroupBox5.Enabled :=true;
button5.Enabled :=true;
if checkbox1.Checked=false then
GroupBox5.Enabled :=false;
button5.Enabled :=false;
end;
问题:
点击CheckBox的时候他只可以执行if后面的第一个语句,之后的(button5.Enabled :=true; button5.Enabled :=false;)完全
不执行,我写错了?还是不允许这样用?还是真的是Bug ??请指教!
GroupBox5.Enabled :=true;
button5.Enabled :=true;
再次点击(取消选定)之后执行
GroupBox5.Enabled :=false;
button5.Enabled :=false;
procedure TForm1.CheckBox1Click(Sender: TObject);
begin
if checkbox1.Checked=true then
GroupBox5.Enabled :=true;
button5.Enabled :=true;
if checkbox1.Checked=false then
GroupBox5.Enabled :=false;
button5.Enabled :=false;
end;
问题:
点击CheckBox的时候他只可以执行if后面的第一个语句,之后的(button5.Enabled :=true; button5.Enabled :=false;)完全
不执行,我写错了?还是不允许这样用?还是真的是Bug ??请指教!