Apr 14, 2013
08:58 PM
Thank you for your comment. In Project->Advanced, I found the [maintenance mode] setting. If I check the [Enable Maintenance Mode support] option and change the product name from ProductA1.0 to ProductA1.0.1 in a patch project, after the patch installer is installed, only [ProductA1.0] was displayed in [Add or Remove Programs]. So I think in my case, maybe [Enable Maintenance Mode support] is the resolution.
... View more
Apr 11, 2013
09:34 PM
By using installanywhere2012, we have created a base installer for ProductA1.0, the version of it is 1.0 . Now we want to create a patch for ProductA1.0 depending on the installanywhere project file of ProductA1.0. The version of the patch should be 1.0.1, we know how to change it in the project. In this patch, we also want to change the product name from ProductA1.0 to ProductA1.0.1. When we change the value of [Product Name] from ProductA1.0 to ProductA1.0.1 in [Project -> Info -> Product Name], and install the patch installer, the following two entries are displayed in [Add or Remove Programs]:confused:: ProductA1.0 ProductA1.0.1 The expected result is only ProductA1.0.1 should be displayed. Do someone know how to change the product name in a patch with only new product name displayed in [Add or Remove Programs]? Or is it possible to change the product name in a patch? Any comment will be appreciated, thanks. Polo
... View more
Labels
- Labels:
-
InstallAnywhere 2012
Dec 28, 2009
02:40 AM
It's so disappointing that Installshield don't support this feature.
... View more
Dec 24, 2009
07:58 PM
So installshield 2008 not support multilingual minor upgrade in one project?
... View more
Dec 22, 2009
08:10 PM
Hi, I found a problem when I run a minor upgrade. I made a multilingual installshield msi project(Japanese and English) . And the default language in project is English. I built two versions of this project. Firstly I installed one version in Japanese, and the log and messages worked fine in Japanese. Then I run another version, a Japanese message like "whether I will do upgrade..." showed, and I selected Yes. By far, everything was OK. but when I checked the log, the content in log was in English! And the messages showed in minor upgrade were also in English!(I used msiprocessmessage function to show message). When upgrade, the value of ProductLanguage property was 1033(Englsih) and the SELECTED_LANGUAGE was 2052(Japanese). Does somebody know why ProductLanguage and SELECTED_LANGUAGE are different in minor upgrade? I would like to log in Japanese and show japanese messages in minor upgrade after the japanese version was installed. I will appreciate for your help and sorry for my pool english.
... View more
Labels
- Labels:
-
InstallShield 2010
Dec 08, 2009
10:20 PM
I alse had this problem. Can it be resolved in installshield2008?
... View more
May 11, 2009
06:17 AM
DLee65 wrote: I ran into a problem just this week where text was not updating correctly AFTER using the SetDlgItemText. So I created a function called RepaintControl. Below is the code. I hope this helps. prototype RepaintControl(HWND, NUMBER); /** * @brief Refreshes specified control * * @arg p_hDialog parent dialog handle * @arg p_nControl ControlID to repaint */ function RepaintControl(p_hDialog, p_nControl) HWND hControl; begin hControl = GetDlgItem(p_hDialog, p_nControl); InvalidateRect(hControl, NULL, FALSE); UpdateWindow(hControl); end; The call to the function would look like this: hRegDlg = CmdGetHwndDlg (szRegDialog); //Repaint control and refresh dialog //NOTE: Substitute your own control ID. It can be a defined value as seen below or simply a number (e.g., 50, 710, etc) RepaintControl(hRegDlg, TEXT_PN40); InvalidateRect and UpdateWindow are User32 function calls. You answor helped me, 3Q。
... View more
Oct 09, 2008
12:46 AM
I also had this problem. Anybody can help us/:confused:
... View more
Sep 11, 2008
02:45 AM
TheTraveler wrote: Skinable dialogs is suppose to give the end user that exact ability. You could try deriving a custom dialog based on a standard. I haven't tried that myself, but it is worth a look see. Personally, I think that might prove to be more of a headache than it is worth. Besides, all the standard dialogs that come in Install Shield are already skinable. It wouldn't be hard to change over either. It is just a setting change in your project. Not to mention the fact that there shouldn't be any code changes. Hope this helps... Thank you again for your reply. I found it was impossible to change the color of font in installscript msi project with standard dialog.
... View more
Sep 09, 2008
08:52 PM
TheTraveler wrote: Hello, If you are using skinable dialogs, you could change the theme of the dialogs to whatever you want. There is a tool and a howto on how to do that. Hope this helps. Thank you for your reply. But I'm not using skinable dialog, so in installscript msi project, without using skinable dialog, there's no way to change the color of the font in dialog?:confused:
... View more
Sep 09, 2008
04:26 AM
You can use something like ../../../your folder to copy the exe in the path you want.
... View more
Sep 09, 2008
04:22 AM
hi, everyone. I want to change the color of title font(from black to white) both in sd dialog and user defined dialog. My project is installscript msi project. I found it's possible to change the color of title font in basic project,but by far I can't find a way to change the color in installscript msi project.:confused: Does anyone know how to resolve this problem? thank you in advanced.
... View more
Labels
- Labels:
-
InstallShield 2008
Aug 27, 2008
05:50 AM
U can set it in General Information->Product Properties->Install Condition.
... View more
Latest posts by polosheng
Subject | Views | Posted |
---|---|---|
967 | Apr 14, 2013 08:58 PM | |
4691 | Apr 11, 2013 09:34 PM | |
996 | Jan 08, 2010 02:13 AM | |
996 | Dec 28, 2009 02:40 AM | |
996 | Dec 24, 2009 07:58 PM | |
2879 | Dec 22, 2009 08:10 PM | |
608 | Dec 08, 2009 10:20 PM | |
1331 | May 11, 2009 06:17 AM | |
571 | Oct 09, 2008 12:46 AM | |
939 | Sep 11, 2008 02:45 AM |
Activity Feed
- Posted [Enable Maintenance Mode support] may be ok on InstallAnywhere Forum. Apr 14, 2013 08:58 PM
- Posted Could [Product Name] be changed in a Patch project? on InstallAnywhere Forum. Apr 11, 2013 09:34 PM
- Tagged Could [Product Name] be changed in a Patch project? on InstallAnywhere Forum. Apr 11, 2013 09:34 PM
- Tagged Could [Product Name] be changed in a Patch project? on InstallAnywhere Forum. Apr 11, 2013 09:34 PM
- Tagged Could [Product Name] be changed in a Patch project? on InstallAnywhere Forum. Apr 11, 2013 09:34 PM
- Posted Re: Minor Upgrade ProductLanguage value on InstallShield Forum. Jan 08, 2010 02:13 AM
- Posted Installshield 2009 also can't do it! on InstallShield Forum. Dec 28, 2009 02:40 AM
- Posted Nobody can help? on InstallShield Forum. Dec 24, 2009 07:58 PM
- Posted Minor Upgrade ProductLanguage value on InstallShield Forum. Dec 22, 2009 08:10 PM
- Posted Re: Installshield not displaying correct language during Upgrade on InstallShield Forum. Dec 08, 2009 10:20 PM
- Posted 3Q very much on InstallShield Forum. May 11, 2009 06:17 AM
- Posted Re: Pointer to an array inside a structure on InstallShield Forum. Oct 09, 2008 12:46 AM
- Posted Re: change the color of title font on InstallShield Forum. Sep 11, 2008 02:45 AM
- Posted Re: New ProductCode??? on InstallShield Forum. Sep 09, 2008 08:57 PM
- Posted Re: change the color of title font on InstallShield Forum. Sep 09, 2008 08:52 PM
- Posted Re: Running another setup from the Application Setup....Robert Please Help! on InstallShield Forum. Sep 09, 2008 04:26 AM
- Posted change the color of title font on InstallShield Forum. Sep 09, 2008 04:22 AM
- Posted Re: Administrator Privileges Only on InstallShield Forum. Aug 27, 2008 05:50 AM
- Posted Re: How to display splash screen when modify on InstallShield Forum. Aug 20, 2008 08:48 PM
- Posted How to display splash screen when modify on InstallShield Forum. Aug 19, 2008 10:04 PM