Quote:
Originally Posted by GaMEr_2077
is there any option in inno for example if component A is selected then the setup will extract specified file and if selected B then other specified filer
|
I use a similar feature to what you ask in my installer, to decide whether a user will have a full power installation or limited installation ("Low Resource Mode")
Code:
if LowResourceCB.Checked then begin
ExtractTemporaryFile('low_ARC.ini');
ExtractTemporaryFile('low_CLS.ini');
end else begin
ExtractTemporaryFile('ARC.INI');
ExtractTemporaryFile('CLS.INI');
end;
Hopefully this helps you out. This code is tied with a checkbox.