|
I see, ISExec progress percentage don't want to work.
I also don't know how to use records.inf.
But I have a solution to this.
don't set progress for all archives, leave it to zero
add this
Var
ArcInt: integer;
begin
ArcInt:=3 //defines the number of archives involved in process.
ISDoneProgressBar1.Max:= ISDoneProgressBar1.Max * ArcInt
end;
Put these lines under procedure CurStepChanged(CurStep: TSetupStep);
|