I am making the FeatureSelectItem call from the OnBegin function. NumToStr(temp, FeatureIsItemSelected(MEDIA, "test")); MessageBox(temp,INFORMATION); FeatureSelectItem(MEDIA, "test", FALSE); NumToStr(temp, FeatureIsItemSelected(MEDIA, "te...
I am having some trouble with prompting the user with a simple custom action "Error" message.I created the error and left everything with the default settings. In my Dialog box I created a "DoAction" event and called the custom action when the user p...
As per the thread below. I am wanting to only allow the user to pick drive that the software gets installed on and not the path (E.g. X:\Program Files\MyApp). X being the only thing they can select.I think I found what I want in the Dialogs designer...
Is there a way not allow the user the ability to specify a path but allow them to select the drive that they want to install the component on? For example my application will go in X:\blah\app where X is whatever drive the user picks for that specifi...
As the title says.For example if have ANY version installed new or old, I want the installer to stop and prompt the user with a custom message explaining what needs to be done.If you are going to say "use the upgrade feature", we are dealing with bin...
mirik222 wrote:Hi.Do you have any "Required Features" relations between this and other features?No there shouldn't be. I will double check my scripts but there shouldn't be any "Required Features".I did in fact create an test feature and left everyth...
So I eventually figured out a solution to the problem...On the "InstallChangeFolder" dialog box I added a "Volume Select Combo". named the property "INSTALLDRIVE" left the indirect property as "False".On the "Ok" button I added the following[FEATUREN...
Ajay Ladsaria wrote:It looks like you were going for mutually exclusive conditions on the DoAction and EndDialog control events. However, your conditions are not mutually exclusive.Incorrect:NOT (SELECTED_DISK="C:\") OR NOT (SELECTED_DISK="D:\")Corr...
joshstechnij wrote:There needs to be a public property specified in the "Property" setting for a VolumeSelectCombo control. For example, specify SELECTEDVOLUME as a public property name. If Property field for this control is left blank, runtime error...