RE: [DUG] InstallAware Questions

2007-01-30 Thread Conor Boyd
In short, I'm not sure, but I would hazard a guess that you can do pretty much whatever you want with the scripting. Sorry I can't be more specific. But the CurStepChanged event is quite useful. For example, another thing I do is if my installer is running as an auto-upgrade, then in the

RE: [DUG] InstallAware Questions

2007-01-29 Thread David Brennan
Howdi, I have the same question but with Microsoft SQL Server (ie MSDE equivalent). Good experiences? Bad? Is it hard to customise so that for example the installer checks whether an default instance of SQL Server is already installed (can be done by checking registry) and offers the user a

Re: [DUG] InstallAware Questions

2007-01-29 Thread Jeremy North
I have used it to deploy a number of my applications (DCM, CFBuilder - on my site) however they were not high on scripting. I recommend using the forums if you are stuck. You usually get a quick response. What version are you using? On 1/30/07, David Brennan [EMAIL PROTECTED] wrote: Howdi, I

RE: [DUG] InstallAware Questions

2007-01-29 Thread Cheng Wei \(FMI\)
:[EMAIL PROTECTED] On Behalf Of Jeremy North |Sent: Tuesday, 30 January 2007 12:15 p.m. |To: NZ Borland Developers Group - Delphi List |Subject: Re: [DUG] InstallAware Questions | |I have used it to deploy a number of my applications (DCM, |CFBuilder - on my site) however they were not high on scripting

Re: [DUG] InstallAware Questions

2007-01-29 Thread Jeremy North
] On Behalf Of Jeremy North |Sent: Tuesday, 30 January 2007 12:15 p.m. |To: NZ Borland Developers Group - Delphi List |Subject: Re: [DUG] InstallAware Questions | |I have used it to deploy a number of my applications (DCM, |CFBuilder - on my site) however they were not high on scripting. | |I recommend using

RE: [DUG] InstallAware Questions

2007-01-29 Thread Conor Boyd
Another alternative is to fully script it yourself using Inno Setup (which is written in Delphi). The scripting language it provides is very similar to Delphi, and you should be able to find references in the Inno Setup forums to other posters using Inno Setup to deploy database stuff, although I

RE: [DUG] InstallAware Questions

2007-01-29 Thread Cheng Wei \(FMI\)
- | |From: [EMAIL PROTECTED] | |[mailto:[EMAIL PROTECTED] On Behalf Of Jeremy North | |Sent: Tuesday, 30 January 2007 12:15 p.m. | |To: NZ Borland Developers Group - Delphi List | |Subject: Re: [DUG] InstallAware Questions | | | |I have used it to deploy a number of my applications (DCM, |CFBuilder

Re: [DUG] InstallAware Questions

2007-01-29 Thread Jeremy North
Sinan's response (he doesn't subscribe to this list). Apologies if this comes through a couple of times. Hey Jeremy, Great questions! 1. Sure, InstallAware itself is a Delphi app :) And I believe some Interbase apps have been deployed also. 2. Good :) 3. Able to install SQL Server Express (any

RE: [DUG] InstallAware Questions

2007-01-29 Thread Cheng Wei \(FMI\)
Hey Jemery, Thanks very much for relaying my questions to Sinan. Cheers Cheng |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED] On Behalf Of Jeremy North |Sent: Tuesday, 30 January 2007 1:45 p.m. |To: NZ Borland Developers Group - Delphi List |Subject: Re: [DUG

RE: [DUG] InstallAware Questions

2007-01-29 Thread Cheng Wei \(FMI\)
List' |Subject: RE: [DUG] InstallAware Questions | |I have found the inno setup very easy to use - I have setups |that do various tasks from installing a new site, to |installing updates, down to a minimal one that just creates a |desktop shortcut and nothing else. It has all the useful

RE: [DUG] InstallAware Questions

2007-01-29 Thread Conor Boyd
John, Can you not script that yourself in your own CurStepChanged function? From the Inno help: procedure CurStepChanged(CurStep: TSetupStep); You can use this event function to perform your own pre-install and post-install tasks. I've found the scripting ability of

RE: [DUG] InstallAware Questions

2007-01-29 Thread John Bird
: RE: [DUG] InstallAware Questions John, Can you not script that yourself in your own CurStepChanged function? From the Inno help: procedure CurStepChanged(CurStep: TSetupStep); You can use this event function to perform your own pre-install and post-install tasks