could someone explain my how to create radio buttons in the way that if i select one, the other ones of the group are automatically disabled? at the moment i can select all radio buttons of a group at the same time, but i want that the user can only choose one type out of all in the group. (see my example below).
by the way i use WIHU since about 1 or 2 hours and it's amazing :-)
CODE
[MyProgram]
group = 1
test.eval.0 = selected.1 | selected.2 | selected.3
selected.0 = if.false
description.0 = MyProgram Standalone
command.0 = %WIHU%\MyProgram\App.exe /s /conf="%WIHU%\MyProgram\Standalone.ini"
test.eval.1 = selected.0 | selected.2 | selected.3
selected.1 = if.false
description.1 = MyProgram with IE Toolbar
command.1 = %WIHU%\MyProgram\App.exe /s /conf="%WIHU%\MyProgram\Toolbar.ini"
test.eval.2 = selected.1 | selected.0 | selected.3
selected.2 = if.false
description.2 = MyProgram with a lot of crap
command.2 = %WIHU%\MyProgram\App.exe /s /conf="%WIHU%\MyProgram\Crap.ini"
test.eval.3 = selected.1 | selected.2 | selected.0
selected.3 = if.false
description.3 = MyProgram Full Installation
command.3 = %WIHU%\MyProgram\App.exe /s /conf="%WIHU%\MyProgram\Full.ini"
group = 1
test.eval.0 = selected.1 | selected.2 | selected.3
selected.0 = if.false
description.0 = MyProgram Standalone
command.0 = %WIHU%\MyProgram\App.exe /s /conf="%WIHU%\MyProgram\Standalone.ini"
test.eval.1 = selected.0 | selected.2 | selected.3
selected.1 = if.false
description.1 = MyProgram with IE Toolbar
command.1 = %WIHU%\MyProgram\App.exe /s /conf="%WIHU%\MyProgram\Toolbar.ini"
test.eval.2 = selected.1 | selected.0 | selected.3
selected.2 = if.false
description.2 = MyProgram with a lot of crap
command.2 = %WIHU%\MyProgram\App.exe /s /conf="%WIHU%\MyProgram\Crap.ini"
test.eval.3 = selected.1 | selected.2 | selected.0
selected.3 = if.false
description.3 = MyProgram Full Installation
command.3 = %WIHU%\MyProgram\App.exe /s /conf="%WIHU%\MyProgram\Full.ini"
i thought it should work this way, but it seems to be wrong :-)