View Single Post
  #875  
Old 26-07-2020, 04:26
Titeuf's Avatar
Titeuf Titeuf is offline
Registered User
 
Join Date: Oct 2016
Location: France
Posts: 191
Thanks: 614
Thanked 22 Times in 19 Posts
Titeuf is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Line 4482, search for this and add the red parts

Code:
#if CompactMode == "1"
  #if INIValue == ""
    SetIniString('{#INISection}', '{#INIKey}', ExpandConstant('{username}'), ExpandConstant('{#INIFile}'));
    SetIniString('{#INISection}', '{#INIKey}', ExpandConstant('{username}'), ExpandConstant('{app}\INIFile2.ini'));
  #else
    SetIniString('{#INISection}', '{#INIKey}', '{#INIValue}', ExpandConstant('{#INIFile}'));
    SetIniString('{#INISection}', '{#INIKey}', '{#INIValue}', ExpandConstant('{app}\INIFile2.ini'));
  #endif
#else
  SetIniString('{#INISection}', '{#INIKey}', WizardForm.UserInfoNameEdit.Text, ExpandConstant('{#INIFile}'));
  SetIniString('{#INISection}', '{#INIKey}', WizardForm.UserInfoNameEdit.Text, ExpandConstant('{app}\INIFile2.ini'));
#endif
Hello KaktoR,
thank you so much
cordially
Reply With Quote