Re: [WiX-users] Disabling features in the CustomizeDlg based on UI interaction...

2007-05-29 Thread Lewis Henderson
Aaron Shurts" <[EMAIL PROTECTED]> >Subject: Re: [WiX-users] Disabling features in the CustomizeDlg based> > on UIinteraction... >To: "Pally Sandher" <[EMAIL PROTECTED]> >Cc: Lewis Henderson <[EMAIL PROTECTED]>, > wix-users@lists.sour

[WiX-users] Disabling features in the CustomizeDlg based on UI interaction...

2007-05-29 Thread Lewis Henderson
Hi All, I'm still trying to port from InstallShield to wix, and here's the problem I'm running into: The user enters an authorization key, which is checked for validity in a CA. The CA also determines which features are available based on this key, and I want to disable the features that aren

Re: [WiX-users] Using heat.exe as part of an automated build

2007-05-22 Thread Lewis Henderson
Hi, I have a similar situation (where the list of files changes from release to release), and I use a perl script to generate wix include files for the components and features. Let me explain. We keep list files, split into what become components, containing simply the relative pathname of all f

Re: [WiX-users] Help with feature condition...

2007-05-15 Thread Lewis Henderson
fine. Lewis -Original Message- From: Julie Campbell [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 15, 2007 2:41 PM To: wix-users@lists.sourceforge.net Cc: Lewis Henderson Subject: Re: [WiX-users] Help with feature condition... Are you really setting that property t

[WiX-users] Help with feature condition...

2007-05-15 Thread Lewis Henderson
Hi All, I'm working on an install that uses a Custom Action to validate an authorization key. Depending on the value of the key, I want to disable the features that aren't authorized. I know you can disable a feature by setting it's level to '0' via a conditional, so my CA sets a property, Au

[WiX-users] Prerequsite RTL installs...

2007-05-10 Thread Lewis Henderson
Hi, This is my last question for the day. I'm working on an install that uses a custom action to validate a product key early in the UI sequence. However, the custom action code requires the C++ RTL for VC 8.0 (2005 .NET). How do I check for and install this RTL if needed before the UI sequen

[WiX-users] Disabling and hiding a feature based on key...

2007-05-10 Thread Lewis Henderson
Hi All, I've got an install that prompts for a product key, and based on the value of that key, certain features may not be available. How do I disable these features and remove them from the subsequent FeatureTree dialog? My key validation custom action can set a property value for each feat

[WiX-users] How to check length of input string?

2007-05-10 Thread Lewis Henderson
Hi All, I'm new to the list, but I've scanned back a month or so and didn't find anything for this. I'd like to enforce a length requirement for an authorization number in a dialog box. If the value entered isn't exactly 24 characters, I want the Next button disabled. Additionally, I'd li

Re: [WiX-users] Prevent installing on Windows 2000

2007-05-10 Thread Lewis Henderson
Hi Nick, I'm new to the listserv, but I think the following code will help with your service pack requirements: VersionNT >= 501 NOT VersionNT = 501 OR ServicePackLevel >= 2 NOT VersionNT = 502 OR ServicePackLevel >= 1 This will allow Vista (VersionNT for Vista is a