View Single Post
  #11  
Old 26-06-2020, 17:28
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
Quote:
Originally Posted by KaktoR View Post
Why
Was this capture not made before recompiling (Previous Debug)?

You would not have been able to compile with the variable ReloadComponents outside the area defined in the ISPP
Code:
ReloadComponents: = False;
Copy from the bottom and paste into the variable declaration this:
Code:
#if UseComponents == "1"
NOTES: The ISPP can also be used to limit a variable whether or not it is defined.
Code:
var
  //////////////////////// Check boxes ////////////////////////
  IconsCB, StartMenuCB, {#if CheckCRC == "1"}CRCCheckCB,{#endif} PauseCB, UninstallCB, LimitRAMCB: TNewCheckBox;
Reply With Quote