Create a page based on a answer of my question How to create an options page in Inno Setup? , the only thing I do not understand is how to grab the one that is selected to create the condition.
Could someone explain to me how to do it?
Here I leave my code:
InstallTypePage := CreateInputOptionPage(wpSelectDir,'Texto1', 'Texto2', 'Texto3', True, False);
//Crea los radio buttons en esta página
InstallTypePageID := InstallTypePage.ID;
InstallTypePage.Add('Instalar');
InstallTypePage.Add('Reparar');
InstallTypePage.Add('Desinstalar');