Delphi-Quellcode:
public TfrmProgressDialog.SetProperties(const AFormCaption: string; const ALabel01Caption: string; ...; AProgressMax: integer);
begin
Self.Caption := AFormCaption;
...
end;
with TfrmProgressDialog(Sender) do
begin
SetProperties('blah', 'ldkf', ..., 100);
end;
aber...
guck mal hier:
TPBThreadedSplashscreen
Diese Form hat einen eigenen Thread, d.h. Deine Arbeit kann unabhängig vom Form ablaufen.
Halte ich für eleganter und richtiger