954,529 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Pascal in INNO Setup

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.

mitster
Newbie Poster
1 post since Dec 2011
Reputation Points: 10
Solved Threads: 0
 

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.

Morten Brendefu
Light Poster
44 posts since Mar 2011
Reputation Points: 38
Solved Threads: 2
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You