zu 3. das Icon wird in den Projektoption/Anwendungen ein gestellt wenn dort die Fakel hast müsste das Delphi 4 sein richtig?

zu 1.
Code:
procedure TForm1.Button1Click(Sender: TObject);
var I:Integer;
    ChildControl: TControl;
    ChildLable: TLabel;
begin
  For i:=0 to Form1.ControlCount-1 do
  begin
    ChildControl := Form1.Controls[I];
    if ChildControl.ClassName = 'TLabel' then
    begin
      ChildLable := ChildControl as TLabel;
      ChildLable.Caption := '';
    end;
  end;
end;
zu 2: lasse ich jetzt mal offen