Feb 11, 2020
04:43 AM
write an function which is listing this folder: https://helpnet.flexerasoftware.com/installshield22helplib/Subsystems/installshield22langref/helplibrary/LangrefFindAllFiles_Example.htm?
... View more
Feb 11, 2020
12:31 AM
Look at your first topic here: https://community.flexera.com/t5/InstallShield-Forum/Where-is-the-quot-Setup-Status-quot-dialog-box/m-p/132859
... View more
Feb 07, 2020
05:05 AM
1 Kudo
Hi, Create a new FEATURE and map the files that you want to prevent from installation. Use installscript FeatureSelectItem function to select and deselect the feature. // Set the selection status of NewFeature to not selected. (It won't deploy your files) E.g FeatureSelectItem (MEDIA, "NewFeature", FALSE); Thanks, Thananjeyan
... View more
Jan 08, 2020
06:17 AM
Still it fails under this specific use case, can anyone explain why? 1. Display the SdAskDestPath dialog box which prompts for the directory path. 2. When the dialog box displays enter a directory name that does not exists. Example: C:\\TestDoesNotExists or C:\TestDoesNotExists 3. When the dialog box closes the code below always indicates that the directory exists. if( ExistsDir (pathEntered) = EXISTS) then targetExists= TRUE; // Always executed for steps 1 thru 3 above. endif;
... View more
Nov 12, 2019
06:50 AM
Is there any documentation on the return codes which are returned for LAAW.PARAMETERS.nLaunchResult? I am calling LaunchAppAndWait to shell into dos and launch a command script. If succesfull .nLaunchResult returns Zero, but if not zero then it means failure. I would like to somehow determine based upon the code returned what the specific error means. For example Inoticed that the value " -1073741510" is returned if my process fails. I would like to give the person running the installation more specifics around why the command failed so it would be nice to determine what the specific nLaunchResult value means.
... View more
Labels
- Labels:
-
InstallShield 2019
Nov 11, 2019
08:48 PM
I have an InstallScript project. I created a skinnable dialog box. On the dialog there is a default image on the left side of the dialog box adjacent to a white vertical line. The image appears to be of a computer and computer peripherals. In the designer I deleted the image, yet when the dialog box displays the white vertical line on the left side of the dialog box is still displaying. How can I totally get rid of the default image and vertical line? Attached is an image of a dialog box which I think will give you an idea of what I am talking about.
... View more
Labels
- Labels:
-
InstallShield 2019
Nov 11, 2019
08:13 PM
Never mind Jennifer. I will just plan on creating the skinnable dialog types rather than trying to convert them.
... View more
Oct 09, 2019
10:12 PM
Hi @ralphster,
You can delete the release from the "Releases" view.
1- Go to the "Releases" view
2- Select the release which you want to delete.
3- Press "Del" button or "Delete" option from the right click context menu.
... View more
Oct 04, 2019
10:40 AM
Thank you Jennifer. I want to keep the branding, so that I follow the licencing agreement. I just want to figure out how to align it properly. Thank you.
... View more
Oct 03, 2019
09:35 AM
1 Kudo
Try below
MessageBoxEx("Are you sure?","My message box header",MB_YESNO | MB_ICONEXCLAMATION );
... View more
Sep 26, 2019
07:24 AM
I have many "Script Based Dialog" boxes which I created in my "InstallScript" project. Since those dialog boxes are script based can they be skinned using skins provided by InstallShield? The answer appears to be NO, because if I create a new dialog box my options are as follows and it appears that Blank and Script Based Dialog boxes are not skinnable? From the Dialog Wizard: Choose a dialog template from the list below, or brows to a dialog (.isd) file. Blank Dialog Script Based Dialog Skinnable Dialog
... View more
Labels
- Labels:
-
InstallShield 2019
Sep 26, 2019
07:15 AM
Hi Banna, The orginal project I created in 2016 was an "InstallScript" project. When I converted it to InstallShield 2019 it looks like it is still an "InstallScript" project. (Is there anyway to validate this?)
... View more
Sep 23, 2019
11:22 PM
1 Kudo
You can as well try Is command
https://community.flexera.com/t5/InstallShield-Knowledge-Base/Detecting-When-a-Reboot-Is-Necessary/ta-p/3933
if (Is(FILE_EXISTS, WINDIR ^ "Wininit.ini") = TRUE) then ....
... View more
Sep 19, 2019
11:38 PM
Dialog and its controls need to be initialized before font is set. Can you try CtrlSetFont after EzDefineDialog call during dialog initialization (DLG_INIT event) as shown in the below sample.
https://helpnet.flexerasoftware.com/installshield25helplib/Subsystems/LangRef/helplibrary/LangrefCtrlSetFont_example.htm#langref_appendixa_2230407831_1026994
case DLG_INIT:
hwndDlg = CmdGetHwndDlg(szDialogName);
SdGeneralInit(szDialogName, hwndDlg, 0, "");
CtrlSetFont (szDialogName, hFont1, 1566);
... View more
Sep 10, 2019
09:47 AM
HI @ralphster ,
InstallShield2019PremierComp.exe is the main setup of InstallShield 2019 premier edition ,while "InstallShieldSkinCustomizationKit.exe", "InstallShieldInstallScriptObjects.exe" are all additional setups which you can use for additional purposes.Each serves its own purpose
For an example you can use InstallShieldSkinCustomizationKit to create custom skins which you can use with main product.InstallShield2019PremierComp.exe won't install additional setups,on need basis you can install other setups.
Thanks,
Jenifer
... View more
Latest posts by ralphster
Subject | Views | Posted |
---|---|---|
784 | Feb 10, 2020 12:34 PM | |
777 | Feb 07, 2020 10:01 AM | |
756 | Feb 06, 2020 09:45 AM | |
793 | Jan 08, 2020 06:17 AM | |
803 | Jan 07, 2020 07:08 PM | |
590 | Nov 12, 2019 06:50 AM | |
565 | Nov 11, 2019 08:48 PM | |
1686 | Nov 11, 2019 08:13 PM | |
1693 | Nov 10, 2019 09:22 PM | |
1112 | Oct 09, 2019 01:38 PM |
Activity Feed
- Posted Setup Progress Dialog ? on InstallShield Forum. Feb 10, 2020 12:34 PM
- Posted How to determine if a directory is empty? on InstallShield Forum. Feb 07, 2020 10:01 AM
- Kudoed Re: How to selectively install certain files? for Thananjeyan_M. Feb 07, 2020 09:58 AM
- Posted How to selectively install certain files? on InstallShield Forum. Feb 06, 2020 09:45 AM
- Posted Re: ExistsDir is always affirmative regardless of the path ? on InstallShield Forum. Jan 08, 2020 06:17 AM
- Posted ExistsDir is always affirmative regardless of the path ? on InstallShield Forum. Jan 07, 2020 07:08 PM
- Posted LAAW.PARAMETERS.nLaunchResult on InstallShield Forum. Nov 12, 2019 06:50 AM
- Posted Graphic on Skinnable dialog box on InstallShield Forum. Nov 11, 2019 08:48 PM
- Posted Re: How to skin a custom dialog? on InstallShield Forum. Nov 11, 2019 08:13 PM
- Posted Re: How to skin a custom dialog? on InstallShield Forum. Nov 10, 2019 09:22 PM
- Posted Re: How to reset the release name on InstallShield Forum. Oct 09, 2019 01:38 PM
- Kudoed Re: How to reset the release name for banna_k. Oct 09, 2019 01:38 PM
- Posted How to reset the release name on InstallShield Forum. Oct 07, 2019 07:53 AM
- Posted Re: How to align "InstallShield" text on InstallShield Forum. Oct 04, 2019 10:40 AM
- Kudoed Re: How to align "InstallShield" text for Jenifer. Oct 04, 2019 10:40 AM
- Kudoed Re: Message box with a return code for Varaprasad. Oct 03, 2019 05:45 PM
- Posted Re: Message box with a return code on InstallShield Forum. Oct 02, 2019 03:20 PM
- Posted Re: Message box with a return code on InstallShield Forum. Oct 02, 2019 03:13 PM
- Posted Message box with a return code on InstallShield Forum. Oct 01, 2019 03:32 PM
- Posted Re: How to skin a custom dialog? on InstallShield Forum. Sep 26, 2019 03:15 PM