(Gast)
n/a Beiträge
|
Re: Button.Enabled := True (Sehr oft...)
21. Okt 2007, 22:32
Delphi-Quellcode:
procedure TForm1.EnableGroupBox(AGroupBox: TGroupBox;
Enable: Boolean);
var
i: Integer;
begin
with AGroupBox do
begin
Enabled := Enable;
For i := 0 to ControlCount - 1 do
Controls[i].Enabled := Enable;
end;
end;
|
|
Zitat
|