View Single Post
  #1421  
Old 26-06-2020, 17:28
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,077
Thanks: 1,828
Thanked 2,310 Times in 789 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