You need to create a condition with the function ShouldSkipPage, in the section [Code]:
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;
You need to create a condition with the function
ShouldSkipPage
, in the section[Code]
: