Aug 22, 2019
02:12 PM
Hi Banna, That won't work because I am trying to only bold one word in the string. For example in my example string, I only need to bold the word "Fantastic",
... View more
Aug 21, 2019
09:40 AM
How can I bold dynamic text which is displayed on my dialog box. See my sample code below. Notice how I am able to use the "\n" escape code to add newlines. So does anyone know how I can bold my text? For example if I wanted to bold the text "InstallSheild" right after the word "Fantastic"? string myMessage; nyMessage="Welcome to the Installation "; nyMessage=nyMessage + "\n\n\n\n We will be using the Fantastic InstallShield installer ";
... View more
Labels
- Labels:
-
InstallShield 2016 Premier
Aug 16, 2019
04:41 PM
I have several custom dialog boxes. At the bottom of each box are the words "InstallShield" in a light grey color. How do I get rid of that text? I have tried extending the length of the black bar, but that did not work either? Please see attached image.
... View more
Labels
- Labels:
-
InstallShield 2016 Professional
Aug 16, 2019
04:21 PM
Thanks for the help. I can change change part of the header title, but right after it is displayed the words : "Install Shield Wizard". How do I get rid of "InstallShield Wizard"? IFX_PRODUCT_DISPLAY_NAME = "Crostini Plus"; Sprint(DFX_SETUP_TITLE,SdLoadString(IDS_DFX_FORMAT_SETUP_TITLE),IFX_PRODUCT_DISPLAY_NAME )
... View more
Aug 16, 2019
02:24 PM
How can I change the title in the top of the Message Box when it is displayed? I can change titles for other dialog boxes, but I don't know how to change the title for a MessageBox Example: MessageBox("Today is Wednesday.",MB_OK); I want the title at the top of the MessageBox to say "Day Confirm". So how would I change that title?
... View more
Labels
- Labels:
-
InstallShield 2016 Premier
Aug 15, 2019
03:50 PM
If I call one of the dialog boxes provided by InstallShield, how can I change the title at the very top of the dialog box? For example if I call the below dialog box nresult =sdAskDestPath(szTitle,szMsg,szDir,0) None of the input parameters to sdAskDestPath will change to title of the dialog box. So how do I do that?
... View more
Labels
- Labels:
-
InstallShield 2016 Express
Aug 15, 2019
07:25 AM
I tried using StrTrim but I am getting an error message : "string value required". Does anyone have any idea why this is happening? string exampleString = " "; exampleString = StrTrim(exampleString ); // Gives compile error message "string value required".
... View more
Aug 13, 2019
03:35 PM
I am working on an InstallScript Project. When the project runs, my custom dialog boxes are displayed in succession. At the top of each dialog is my project name and the words "InstallShield Wizard". Is there a way to change the title at the very top of the dialog box? Or is it possible to delete it? I would prefer just to change it, and not delete it.
... View more
Labels
- Labels:
-
InstallShield 2016 Premier
Aug 06, 2019
03:51 PM
Hi Banna. The project you attached installs successfully the first time. After that it will not reinstall. It will eventually display a Maintenance complete dialog box, but that is as far as it will go. So still no solution?
... View more
Aug 02, 2019
06:38 AM
Hi Banna, I get three compiler errors. It looks line the two functions are not defined and the return is not returning a value. Which value should it return? should it return "nResult"? Also it appears that the two functions you listed are not defined? OnSQLServerInitiallizeMaint() : undefined identifier FeatureReinstall(): undefined identifier return; : Error, should return a value
... View more
Aug 01, 2019
01:23 PM
Hell Banna. Attached is my project which is zipped up. It is just a very simple project which will illustrate what I am talking about. 1. Yes I have installed the setup.exe (built using installscript msi project) 2. Yes I need to be able to repeatedly run setup.exe and to have it reinstall the product without being prompted to remove or repair the previous installation. The same issue is happening for both Installshield 2019, and 2016.
... View more
Jul 31, 2019
10:40 AM
Hello Banna, Setting nType = REPAIR is leading to the invocation of dialog boxes to repair the previous installation right? That is not what I need. I just want the product to reinstall and never to prompt to fix, repair or remove the previous installation. How can I do that? I tried your suggestions and all of them will display a dialog box which either indicates that a repair, or upgrade will occur. I tried this with the simplest InstallShield project and it is still not working. Your help is deeply appreciated. Is there another expert whom you can ask about this?
... View more
Jul 30, 2019
12:25 PM
Hi Banna, I am still having the same issue. Also as a separate test I created a brand new InstallShield project ("InstallScript MSI Project"), This new project is very small and only opens two dialog boxes and no custom dialog boxes. In this new project I also commented out SdWelcomeMaint and the same issue is still occurring. I am stuck, so your help is really appreciated. Below is the very simple code SetupRul from the test project I created today. As you can see it is very simple. Yet I am still having the same issue. #include "ifx.h" function OnFirstUIBefore() string szTitle, szDir, szMsg; number nResult; begin Dlg_SdWelcome: szTitle = "Test Installation"; szMsg= "First Dialog Box"; nResult = sdWelcome(szTitle,szMsg); Dlg_SdAskDestPath: szTitle = "Ask Destination Path"; szMsg = "Second Dialog"; nResult = SdAskDestPath(szTitle,szMsg,szDir,0); return nResult; end; function OnMaintUIBefore() //nType = SdWelcomeMaint(szTitle, szMsg, MODIFY); nType = REPAIR;
... View more
Jul 29, 2019
05:09 PM
Thanks for the information Banna. I commented out the line of code: nType = SdWelcomeMaint(szTitle, szMsg, MODIFY): And that did not fix the issue. Do you have any further information which can help me out? As I mentioned before, my project does not need to uninstall any previous installations, because it is not installing any files.
... View more
Jul 26, 2019
05:01 PM
I have an "InstallScript" MSI project. Over several days I have created about 4 custom dialogs. They all work great. Today I am trying to create a new custom dialog box. In the Dialog Wizard I first select "Script Based Dialog", but when I press the "Finish" button, I get an error dialog box labeled "Resolve Conflict". No exact message is given as to what the issue is. At the top of each dialog box is a control id the represents the title of the dialog box. "ControlId_50". That is the only think I can think of that could be wrong, but not sure? Very confusing. Attached is a screen snapshot of how the error dialog box look. I could not include the actual image of the error dialog box, so my mockup is attached. So how can I resolve this?
... View more
Labels
- Labels:
-
InstallShield 2016 Premier
- « Previous
- Next »
Latest posts by ralphster
Subject | Views | Posted |
---|---|---|
775 | Feb 10, 2020 12:34 PM | |
765 | Feb 07, 2020 10:01 AM | |
746 | Feb 06, 2020 09:45 AM | |
789 | Jan 08, 2020 06:17 AM | |
799 | Jan 07, 2020 07:08 PM | |
587 | Nov 12, 2019 06:50 AM | |
557 | Nov 11, 2019 08:48 PM | |
1674 | Nov 11, 2019 08:13 PM | |
1681 | Nov 10, 2019 09:22 PM | |
1104 | 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