Re: [WiX-users] Evaluation of Conditions

2008-11-06 Thread primo.alcantara
Hi Richard, Hi All, It still did not work for me. Maybe CustomActions using VBScripts are treated differently? TIA, Primo > To: wix-users@lists.sourceforge.net > From: [EMAIL PROTECTED] > Date: Thu, 6 Nov 2008 11:22:16 -0700 > Subject: Re: [WiX-users] Evaluation of Conditions > > > In

Re: [WiX-users] Evaluation of Conditions

2008-11-06 Thread primo.alcantara
It did not work again. Maybe hotmail does not like XML tags in the email It stripped all those out again I am going to replace the < with [ and> with ] > > > Sorry for the multiple posts. > Hotmail is not behaving well for me these days. > It stripped out some text in my original post. > Hope

Re: [WiX-users] Evaluation of Conditions

2008-11-06 Thread primo.alcantara
Sorry for the multiple posts. Hotmail is not behaving well for me these days. It stripped out some text in my original post. Hopefully all goes well this time. Hi All, I attached a VBScript CustomAction to a Control. 1 TestPassed=1 MyScripts.vbs has the following pseudo-code:

[WiX-users] Evaluation of Conditions

2008-11-06 Thread primo.alcantara
Hi All, I attached a VBScript CustomAction to a Control. 1 TestPassed=1 MyScripts.vbs has the following pseudo-code: Function PerformTests Dim testStatus [perform some complicated tests that set testStatus] If testStatus = 0

[WiX-users] FW: Reevaluating Dependent Properties

2008-11-05 Thread primo.alcantara
sorry about the last post ... it got sent inadvertently using plain text From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: Reevaluating Dependent PropertiesDate: Wed, 5 Nov 2008 18:29:26 + Hi Rob,Hi All, I realize I can use the SetProperty CustomAction sets the value of MYDATAFILE to specifi

Re: [WiX-users] Reevaluating Dependent Properties

2008-11-05 Thread primo.alcantara
Hi Rob,Hi All, I realize I can use the SetProperty CustomAction sets the value of MYDATAFILE to specifically [MYDIR]\myData.txt. However, I want the installer to go through the property evaluation logic already defined in the definition of MYDATAFILE.

[WiX-users] Reevaluating Dependent Properties

2008-11-05 Thread primo.alcantara
Hi All, Is it possible to reevaluate dependent properties in WiX? I am using WiX 3.0.3907.0. I have a property MYDIR that uses RegistrySearch to get an initial default value. The dependent property MYDATAFILE uses the value of MYDIR.