Wie meinst du das..
Ich Verstehe das wirklich absolut garnich X-(
Delphi-Quellcode:
procedure TForm2.FormCreate(Sender: TObject);
var a :string;
begin
ini := Tinifile.Create(ExtractFilePath(Application.Exename)+'Einstellungen.ini');
a := ini.ReadString('tapi','aktiviert','yes');
ini.Free;
if a = 'yes' then form1.CheckBox2.Enabled:=true
else
form1.CheckBox2.Enabled:=falsE;
end;