Hey guys, im trying to use an IF statement in the SETUP portion of the script for my inno setup installer, i want it to test for the boolean condition of a radio button defined in a 'procedure' in the CODE section, is this possible, how would i do it? thanks.

Any radio button created belongs to the actual form it was created on.
As long as the form is in the uses clause on other forms, then you can access its components and states.

If you have a form named SETUP and a form named CODE,
Then:
CODE.RadioButton1 will access properties on this radiobutton from Setup section/form.

OR, From CODE form:
SETUP.RadioButton5 will access this SETUP RadioButton.

I hope this is understandable :-)
Best regards.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.