Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2005
    Posts
    2

    selecting install packages using Buttons

    In setup factory 7 I have an installer that I would like to install one driver or the other leaving this to the users choice. I think I can do this using the Buttons or radio buttons page and packages but how do I tell it to install certain packages when one button is pressed and not the other ones

  2. #2
    Join Date
    May 2000
    Location
    Indigo Rose Software
    Posts
    2,150
    Something like this may work:

    Code:
    if someConditionIsMet then
    SetupData.SetPackageProperties("Package 1", {Install=false});
    SetupData.SetPackageProperties("Package 2", {Install=true});
    else
    SetupData.SetPackageProperties("Package 1", {Install=true});
    SetupData.SetPackageProperties("Package 2", {Install=false});
    end
    Adam Kapilik

Similar Threads

  1. Selecting packages in silent install
    By raynebair in forum Setup Factory 6.0
    Replies: 3
    Last Post: 09-28-2005, 01:22 PM
  2. HOWTO: Download and Install Files from the Web
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 10-23-2002, 01:16 PM
  3. HOWTO: Limit the Number of Times an Install can be Run
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 10-17-2002, 02:58 PM
  4. Selecting the package to install.
    By Thief in forum Setup Factory 5.0
    Replies: 4
    Last Post: 05-03-2001, 05:33 AM
  5. Selecting packages to install.
    By Thief in forum Setup Factory 5.0
    Replies: 3
    Last Post: 12-22-2000, 10:13 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts