 | | From: | mgarnysz at computerland.pl | | Subject: | Another installation before main setup | | Date: | Thu, 16 Dec 2004 14:12:25 +0000 (UTC) |
|
|
 | I have to check in registry that runetime environment for my application had installed. I have to do it before I start a basic part of setup. If not I should be ask user to install it (change CD and run another setup) and after then continue a basic installation. How can I do it? I have no practice in Inno Setup (4.2.7). Thanks
|
|
 | | From: | Gavin Lambert | | Subject: | Re: Another installation before main setup | | Date: | Fri, 17 Dec 2004 10:45:38 +1300 |
|
|
 | mgarnysz@computerland.pl wrote: > I have to check in registry that runetime environment for my application > had installed. I have to do it before I start a basic part of setup. If > not I should be ask user to install it (change CD and run another setup) > and after then continue a basic installation. How can I do it? I have no > practice in Inno Setup (4.2.7).
Handle the InitializeSetup event function. If you return true, then setup will continue. If you return false, then setup will abort.
|
|