May 07, 2009
02:31 AM
Thanks for your reply.. We want to develop more with installshield. So we are purchased with another license of IS 2009 Now we had two machines for Production of lets say buildsystem 2008 and buildsystem 2009. Very basic question is projects developed in both systems can not be edited in other.Means do we have to go for downgrade or upgrade that will make both systems same. I will say we want a backup production clone to develop more resources for IS development. If we go for upgrade will it support say previous Link of projects after migrating them. Straight question : Will base developed in IS 2008 allow me to create patches in 2009 without any issues? Thansks for any help.
... View more
Apr 29, 2009
12:37 AM
Sorry for delayed respnse I didn’t find time to look into... The %P is project name under General Information ->Product properties-> Name. Check if you set the name here. Can you just create the sample install script msi project without importing anything just setting properties under Installation Information? It will check if %P is showing Product name on dialog where it copies files. About sdStartCopy() is dialog to show user the information you have collected from user. You can check it under Dialogs section. The Dialog used to show User name, Installation Location, Database, and every information you asked user to provide about sustem. It’s like asking for confirmation and he shall edit it if he wants. Thanks
... View more
Apr 24, 2009
08:00 AM
can you explain the things you are doing by calling function say Dosomething1(); You can use the lines of code below on every action even inside called functions function Dosomething1() begin SetStatusWindow (20, "start Dosomething1."); Delay(3); // you write every single line some progress SetStatusWindow (40, "doing Dosomething1."); Delay(3); //Copy files...... SetStatusWindow (60, "Leaving Dosomething1."); Delay(3); end; In above code dont forget to insert Delay() after SetStatusWindow(int,"String");; Will Display user something process...... May this help you. Thanks
... View more
Apr 23, 2009
10:09 AM
Hi Try using all these functions below, // setup default status Enable(STATUSEX); Enable(STATUS); // Set the limit of the progress bar to 99% completion. StatusUpdate (ON, 99); // Display a message; do not change the progress bar. SetStatusWindow (-1, "copying Files ..."); Delay(2); DoFunction1(); SetStatusWindow (20, "Doing Things1 ."); DoFunction2(); SetStatusWindow (50, "Doing Things2 ."); Delay (2); // Display a message; do not change the progress bar. SetStatusWindow (-1, "Copying completed, .."); Delay (3); // Set the progress bar to 100% and displays a message. SetStatusWindow (100, "Copying completed, ..."); Delay (3);
... View more
Apr 23, 2009
04:46 AM
Open both projects in install shield observe the component code for component containing new .dll Check if it is same?
... View more
Apr 23, 2009
02:11 AM
Try and use following for accessing property in install script. MsiSetProperty(ISMSI_HANDLE, "MYPROPERTY", svName); Sandip Deshmukh ________________ Software Developer
... View more
Apr 16, 2009
06:09 AM
Hello Eveyone I am new to install shield... Our company has number of install shield(Installscript MSI) projects developed in 2008 with minors like 4.2.0, 4.2.1, 4.2.3, 4.2.4, 4.2.4...... Now we have purchased newer license of IS2009 premier. So whenever I open the previous projects it is asking us to migrate. There are still some IS2008 machines. So dont want to do migration. Is there any workarounds for this? Also want to know if we do migrate will it support previous chain of patches (Minor updates)in installshield, allowing me to create patch. Any help will be greatful Thanks
... View more
Labels
- Labels:
-
InstallShield 2008
Nov 20, 2007
11:43 PM
Thanks Alan It helps me....!!!! What one can try is in sql Scripts, drop a table that is created during sql login dlg and then try restore Thanks Again
... View more
Nov 19, 2007
08:02 AM
Hi I am new to IS. I am creating the windows installer using install script, wants to execute the sql script for database operations. with sql script i manage to run simple insert query with -- sql login dlg -- connection -- sql scripts Now i want to "restore" db with and without replacement text mode so i go through forums and try to execute queries But i got error msg as " Error 27506.Error executing SQL Script sqlscript8.sql Line 13. RESTORE DATABASE is terminating abnormally.(3013)" Any Help Thanks in advance..... Sandip
... View more
Labels
- Labels:
-
InstallShield 2008
Nov 19, 2007
04:40 AM
Sequence of ui is defined in the Behavior and Logic Tab "installscript" Where u can sequence the ui's as u want
... View more
Oct 16, 2007
08:06 AM
hi Can any body help me with any possible solutions. Thanks Ravikiran
... View more
Oct 12, 2007
07:12 AM
Thanks for your response. Can you please explain me in brief how to use features instead of prerequistes. how can i convert the appication prerequistes as features and install them silently can you tell how to appraoch towards it as i'm new to installShield.
... View more
Oct 12, 2007
04:56 AM
Hi, Can any body look into my problem and help me out
... View more
Oct 09, 2007
06:35 AM
I'm new to setup and deployment products so please help me in bringing out the Setup package for my application. Basically my application consists of two types of setup modes. Both have different prerequisites to be installed for running the application in defferent modes. I have developed setup packages using InstallScript MSI as Project Type for both types individually (using basic wizards) and also added prerequisites(Custom Prerequisites that are added using Redistributable views through Prerequisite editor tool). But I need the two projects setups in one project only so that user can select the required installation and only the concerned prerequisites to be installed and so on. But on my observation, prerequisites are setup specific but not feature specific and are being installed at the very start up of the setup. So how can i install the prerequistes required based on the user selection. Any help is appreciated
... View more
Labels
- Labels:
-
InstallShield 2008
Latest posts by wolverine
Subject | Views | Posted |
---|---|---|
670 | May 07, 2009 02:31 AM | |
1382 | Apr 29, 2009 12:37 AM | |
1382 | Apr 24, 2009 08:00 AM | |
1382 | Apr 23, 2009 10:09 AM | |
1134 | Apr 23, 2009 04:46 AM | |
2131 | Apr 23, 2009 02:11 AM | |
1489 | Apr 16, 2009 06:09 AM | |
967 | Nov 20, 2007 11:43 PM | |
967 | Nov 19, 2007 09:51 PM | |
5192 | Nov 19, 2007 08:02 AM |
Activity Feed
- Posted Re: want to Migration of projects from IS2008 to IS2009. on InstallShield Forum. May 07, 2009 02:31 AM
- Posted Re: no response on InstallShield Forum. Apr 29, 2009 12:37 AM
- Posted Re: no response on InstallShield Forum. Apr 24, 2009 08:00 AM
- Posted Lets try this one on InstallShield Forum. Apr 23, 2009 10:09 AM
- Posted Re: Creating a minor upgrade on InstallShield Forum. Apr 23, 2009 04:46 AM
- Posted Re: changing value of string table identifier within the Installscript on InstallShield Forum. Apr 23, 2009 02:11 AM
- Posted want to Migration of projects from IS2008 to IS2009. on InstallShield Forum. Apr 16, 2009 06:09 AM
- Posted Re: Error while Restore from bak File on InstallShield Forum. Nov 20, 2007 11:43 PM
- Posted Re: Error while Restore from bak File on InstallShield Forum. Nov 19, 2007 09:51 PM
- Posted Error while Restore from bak File on InstallShield Forum. Nov 19, 2007 08:02 AM
- Posted Re: Dialogs in InstallScript MSI UI sequence on InstallShield Forum. Nov 19, 2007 04:40 AM
- Posted Re: how can i install the custom prerequistes based on the user selection on InstallShield Forum. Oct 16, 2007 08:06 AM
- Posted Re: how can i install the custom prerequistes based on the user selection on InstallShield Forum. Oct 12, 2007 07:12 AM
- Posted Re: how can i install the custom prerequistes based on the user selection on InstallShield Forum. Oct 12, 2007 04:56 AM
- Posted how can i install the custom prerequistes based on the user selection on InstallShield Forum. Oct 09, 2007 06:35 AM