View Single Post
  #10  
Old 08-08-2020, 13:12
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
CIU 3.0.0.1 (Beta 6) bug found

After testing the conversion of @Prettyboy099 I found a bug when switching to the installer finish page.
Displays an error when not add the Close button in the installer and going to the finish page.
To fix this, do the following... Open the CIU 3.0.0.1.b6 script and search for:
Code:
CstmBtn[BtnI(CloseBtn)].ClickAction := @NextBtnClick;
Insert the line highlighted in red.
Code:
CstmBtn[BtnI(NextBtn)].ClickAction := @NextBtnClick;
if BtnI(CloseBtn) >= 0 then
  CstmBtn[BtnI(CloseBtn)].ClickAction := @NextBtnClick;
If other errors arise I share an HF.
Thanks @Prettyboy099 for using CIU 3.0.0.1.b6, thanks to him this bug will no longer be present in next version.

Last edited by Cesar82; 09-08-2020 at 06:37.
Reply With Quote
The Following 5 Users Say Thank You to Cesar82 For This Useful Post:
Grumpy (08-08-2020), houcine80 (09-08-2020), mausschieber (08-08-2020), omdj (09-08-2020), Prettyboy099 (08-08-2020)