mupdike wrote:
Thanks for the information. It's my first time ever working with a dialog and I didn't even think to look where the dialogs were in relation to anything in the UI sequence (other then to make them popup in the right order). Since this is my first time working with dialogs can I ask for some more information on setting the AddLocal and Remove events? As always any information provided is greatly appreciated!!
Mike
Sure, no problem. Basically, the AddLocal and Remove events are ControlEvents that will effect the set value of the ADDLOCAL and REMOVE properties. So, you'll take your existing dialog, and go to the Behavior section, and create these ADDLOCAL and REMOVE events on the Next button of the dialog.
Since you'll want to account for situations where Maintenance mode is being run, and someone could feasibly click 'Back' on the dialog, you'll need two events for each feature selection. For example, if you have a dialog control that sets the FEATURE1 property to install Feature1, the conditions and events would be:
Condition: FEATURE1
Action: AddLocal - Feature1
Condition: NOT FEATURE1
Action: Remove - Feature1