mmh, also so klappts auch nicht. ich arbeite mit lazarus. hatte noch 2 syntaktische fehler drin beim kopierten text...allerdings sind die nicht ausschlaggebend.
Delphi-Quellcode:
procedure TForm1.ComboBox1DropDown(Sender: TObject);
var
i:integer;
hilf:boolean;
begin
hilf:=false;
for i:=0 to 3 do //hab auch 1..4 probiert :s
if Form1.CheckGroup1.Checked[i]=true then hilf:=true;
if hilf=true then Form1.Button1.Enabled:=true;
end;
nun bekomme ich ne
exception, die bei lazarus nich näche spezifiziert wird...ganz toll. ich muss mir turbo delphi besorgen, das wird sonst nix.
an sich von der überlegung her müsst es doch klappen oder?