I have created a setup project in visual studio 2008. I want to prompt installation folder dialog conditionally.
I have a dialog box with two radio buttons.
If user selects radio button '1' i.e. Standard installation then installation process should start directly.
But if user selects radio button '2' i.e. Custom installation then installation folder dialog should be presented to user and once user selects installation folder then installation should start.
I have written custom action dll in c++ which retrieves the radio button values and then do the required action depending upon the value.
But I don't know what is the command to show a dialog from custom action. Is there any command like 'dialog.show' that I can use? I searched online also but NO luck. Please guide me.