Re: [WiX-users] Select features on UI

2009-11-30 Thread Akihiro.Shibuta
. Subject: Re: [WiX-users] Select features on UI Hi, Here is an example I wrote to do something on features. There are three featrues VC71 VC70 VC90, and when installing user can only choose one of them and install the matching feature. In a dialog, I created a listbox: Control Id

Re: [WiX-users] Select features on UI

2009-11-29 Thread Akihiro.Shibuta
OR RemovePkgCFeatures/SetProperty -Original Message- From: akihiro.shib...@jp.yokogawa.com [mailto:akihiro.shib...@jp.yokogawa.com] Sent: Tuesday, November 24, 2009 5:14 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Select features on UI Is Conditions changed

Re: [WiX-users] Select features on UI

2009-11-29 Thread salever.lee
...@jp.yokogawa.com 发送时间: 2009-11-30 10:37:55 收件人: wix-users@lists.sourceforge.net 抄送: 主题: Re: [WiX-users] Select features on UI Thanks, If I specify a property that ADDLOCAL, REMOVE are some features from command-line, It does work. If A feature is specfied, it does work. Some features

Re: [WiX-users] Select features on UI

2009-11-26 Thread salever.lee
Publish Event=Remove Value=A![CDATA[NOT(PKGTYPE=A)]]/Publish 2009-11-27 salever.lee 发件人: akihiro.shib...@jp.yokogawa.com 发送时间: 2009-11-25 09:19:36 收件人: wix-users@lists.sourceforge.net 抄送: 主题: Re: [WiX-users] Select features on UI Is Conditions changed to Features ? Feature

Re: [WiX-users] Select features on UI

2009-11-26 Thread Blair
...@jp.yokogawa.com [mailto:akihiro.shib...@jp.yokogawa.com] Sent: Tuesday, November 24, 2009 5:14 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Select features on UI Is Conditions changed to Features ? Feature Id=A FeatureRef Id=F0 / FeatureRef Id=F2 / /Feature Feature Id=B

[WiX-users] Select features on UI

2009-11-24 Thread Akihiro.Shibuta
Hi, I want to modify features by radio buttons on dialog. When PKGTYPE is selected A, features are F0 and F2. When PKGTYPE is selected B, features are F0 and F1. When PKGTYPE is selected C, features are F1 and F2. The content selected on the UI is not reflected. Where has made a mistake? 1)

Re: [WiX-users] Select features on UI

2009-11-24 Thread Arun Perregatturv
Subject: [WiX-users] Select features on UI Hi, I want to modify features by radio buttons on dialog. When PKGTYPE is selected A, features are F0 and F2. When PKGTYPE is selected B, features are F0 and F1. When PKGTYPE is selected C, features are F1 and F2. The content selected on the UI

Re: [WiX-users] Select features on UI

2009-11-24 Thread Akihiro.Shibuta
PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Select features on UI You are missing the publish event for the value Something like this In the Control id=Next Add Publish Event=Addlocal Value=A![CDATA[(PKGTYPE=A)]]/Publish