I need to hide a page in Inno Setup depending on one of a variable boolean
in Inno Setup, how can I do it?
I need to hide a page in Inno Setup depending on one of a variable boolean
in Inno Setup, how can I do it?
You need to create a condition with the ShouldSkipPage
function, in [Code]
section :
function ShouldSkipPage(PageID: Integer): Boolean;
begin
if(PageID = TU_PAGINA.ID) and (TU_VARIABLE = True) then
begin
Result := True; //al regresar true se omite la pagina
end;
end;