Create a page based on an answer to my question How to create an options page in Inno Setup? The only thing I don't 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');
It is accessed as follows:
For example, if you want to create a condition depending on the selected value, it would be: