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

[DUG] InstallAware Questions

2007-01-29 Thread Cheng Wei \(FMI\)
Hi, Has anyone used InstallAware to deploy their Delphi/Interbase apps? What's your experience (good bad) with the product? I'm especially interested in its SQL capabilities. Your comments will be much appreciated. Cheng Wei Software Development Manager FMI Research Ltd P: +64 9 984 4917

RE: [DUG] InstallAware Questions

2007-01-29 Thread David Brennan
] On Behalf Of Cheng Wei (FMI) Sent: Tuesday, 30 January 2007 11:03 a.m. To: NZ Borland Developers Group - Delphi List Subject: [DUG] InstallAware Questions Hi, Has anyone used InstallAware to deploy their Delphi/Interbase apps? What's your experience (good bad) with the product? I'm especially

Re: [DUG] InstallAware Questions

2007-01-29 Thread Jeremy North
Wei (FMI) Sent: Tuesday, 30 January 2007 11:03 a.m. To: NZ Borland Developers Group - Delphi List Subject: [DUG] InstallAware Questions Hi, Has anyone used InstallAware to deploy their Delphi/Interbase apps? What's your experience (good bad) with the product? I'm especially interested in its SQL

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\)
] InstallAware Questions | |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

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