Sep 10, 2019
03:50 AM
Hi,
You can navigate to Redistributables view in Express project that you had created,search for 4.8 Web
Select that with checkbox install before new feature selection checked.
You can download the fileson being prompted to download necessary files which will be a lightweight setup.
The specific pre-requisite already has conditions which will validate if the software is present or not.
If the software isn't present,it will download and install it for you.
Thanks,
Jenifer
... View more
Sep 04, 2019
11:36 PM
You are right, Express edition doesn't have option to change icon for setup.exe.
... View more
Jul 21, 2019
09:59 AM
Hi @coolcasey11, See the below links for how to create and process the custom dialog in Installscript and InstallScript MSI projects: https://helpnet.flexerasoftware.com/installshield25helplib/helplibrary/Dialogs_CreateStandardDlgEd.h... https://helpnet.flexerasoftware.com/installshield25helplib/helplibrary/Dialogs_ImplementStandard.htm... https://helpnet.flexerasoftware.com/installshield25helplib/helplibrary/Dialogs_AddInstallScript.htm As well you can get the install scripts for the existing dialogs from the drop down by selecting the Dialog Source, and Before Move Data for calling sequences.
... View more
Jul 20, 2019
07:28 AM
1. Set property to your edit box property=MYTEXTBOX
2. Create InstallScript custom action (make sure MyFunction iss elected) and sequence it as desired
3. Use install script to read the property as below and use installscript registry methods to update the value in the registry.
function MyFunction(hMSI) // To Do: Declare local variables. STRING textAreaValue;
NUMBER textAreaValueBuffer; begin
textAreaValueBuffer = MAX_PATH;
if(MsiGetProperty(hMSI, "MYTEXTBOX", textAreaValue, textAreaValueBuffer) == ERROR_SUCCESS) then
SprintfBox(INFORMATION,"The value of text area cntrol","The value of MYTEXTAREA is %s", textAreaValue);
endif; // To Do: Write script that will be executed when MyFunction is called.
end;
... View more
Latest posts by coolcasey11
Subject | Views | Posted |
---|---|---|
583 | Sep 09, 2019 10:21 AM | |
1476 | Sep 04, 2019 01:26 PM | |
1486 | Sep 04, 2019 11:49 AM | |
665 | Jul 19, 2019 04:11 PM | |
1558 | Jul 19, 2019 09:42 AM |
Activity Feed
- Posted Redistributables and Conditions on InstallShield Forum. Sep 09, 2019 10:21 AM
- Posted Re: IS Express how to change msi icon on InstallShield Forum. Sep 04, 2019 01:26 PM
- Posted IS Express how to change msi icon on InstallShield Forum. Sep 04, 2019 11:49 AM
- Posted Get text area value from msi basic project into install script on InstallShield Forum. Jul 19, 2019 04:11 PM
- Posted Example Setup Script on InstallShield Forum. Jul 19, 2019 09:42 AM
- Tagged Example Setup Script on InstallShield Forum. Jul 19, 2019 09:42 AM