View Single Post
  #7  
Old 07-04-2023, 04:09
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
@blackfire69
Greetings. Let's say someone decided to use the standard Inno setup packaging tools. Without using Isarcextract. There are small problems (for you and for many, it may not be a problem) . How to pause unpacking when Isarcextract is not used?
Code:
procedure CloseBtnOnClick(Sender: TObject);
begin
  if WizardForm.CurPageID = wpInstalling then
  begin
    SuspendProc;
    ExitForm.Show;
  end else
    ExitForm.Show;
end;
How to achieve smoothness of the progress bar and its accuracy when Isarcextract is not used?
Code:
ProgressBar.SetValue(WizardForm.ProgressGauge.Position, 1000);
And how to roll back everything when canceling the installation when Isarcextract is not used??
I would like if you don't mind a working example


perhaps this will work for you..

.

Last edited by BLACKFIRE69; 14-07-2024 at 01:56.
Reply With Quote
The Following 8 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (08-04-2023), audiofeel (07-04-2023), crachlow (07-04-2023), ffmla (14-04-2023), Gehrman (12-04-2023), hitman797 (07-04-2023), Razor12911 (16-04-2023), wangfeilong0317 (08-04-2023)