
26-07-2020, 04:26
|
 |
Registered User
|
|
Join Date: Oct 2016
Location: France
Posts: 191
Thanks: 614
Thanked 22 Times in 19 Posts
|
|
Quote:
Originally Posted by KaktoR
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
|