Re: [WiX-users] Passing data between deferred custom actions

2009-03-05 Thread Jason Ginchereau
AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Passing data between deferred custom actions What happens when the data value you need contains what appears to be the delimiter between independent properties within the CustomActionData class? "

Re: [WiX-users] Passing data between deferred custom actions

2009-03-05 Thread Christopher Karper
1.) session["PropertyName"] will access the property you're looking for. 2.) Call session.DoAction("ActionName", CAData) 3.) I don't know that you can. Can't you just put that in the CAData? Chris On Thu, Mar 5, 2009 at 1:19 PM, mkk wrote: > > I have a few questions. > > 1. In my immediate

Re: [WiX-users] Passing data between deferred custom actions

2009-03-05 Thread mkk
I have a few questions. 1. In my immediate custom action, how do I get the property value in DTF (C#). 2. In my immediate custom action after stuffing the CustomActionData how do I serialize it out to the name of the property of the immediate custom action. 3. In my defferred custom action, how

Re: [WiX-users] Passing data between deferred custom actions

2009-02-20 Thread Thomas S. Trias
As a delimiter, or for serializing .NET objects? Seems like a rather long delimiter. :-) Thomas S. Trias Senior Developer Artizan Internet Services http://www.artizan.com/ Original Message Subject: Re: [WiX-users] Passing data between deferred custom actions From: Chad

Re: [WiX-users] Passing data between deferred custom actions

2009-02-20 Thread Chad Miles
lizing .NET objects)... > > Thanks, > > Thomas S. Trias > Senior Developer > Artizan Internet Services > http://www.artizan.com/ > > > > ---- Original Message ---- > Subject: Re: [WiX-users] Passing data between deferred custom actions > From: John Nannenga

Re: [WiX-users] Passing data between deferred custom actions

2009-02-20 Thread Thomas S. Trias
rtizan.com/ Original Message Subject: Re: [WiX-users] Passing data between deferred custom actions From: John Nannenga To: General discussion for Windows Installer XML toolset. Date: 2/20/2009 12:01 PM > What happens when the data value you need contains what appe

Re: [WiX-users] Passing data between deferred custom actions

2009-02-20 Thread John Nannenga
0:52 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Passing data between deferred custom actions Most of the WiX toolset CustomActions do this. Eitan Behar wrote: > Does not look like fun, but it's doable ! Thanks ! > > Etian > > >

Re: [WiX-users] Passing data between deferred custom actions

2009-02-17 Thread Rob Mensching
ment Engineering Blog >> Have a hot tip, know a secret or read a really good thread that deserves >> attention? E-Mail Me >> >> >> --- On Tue, 2/17/09, Eitan Behar wrote: >> >> >>> From: Eitan Behar >>> Subject: Re: [WiX-users] Passin

Re: [WiX-users] Passing data between deferred custom actions

2009-02-17 Thread Eitan Behar
actions(s). This is how MSI makes the join. > > Christopher Painter, Author of Deployment Engineering Blog > Have a hot tip, know a secret or read a really good thread that deserves > attention? E-Mail Me > > > --- On Tue, 2/17/09, Eitan Behar wrote: > > > From: Eitan B

Re: [WiX-users] Passing data between deferred custom actions

2009-02-17 Thread Christopher Painter
> Subject: Re: [WiX-users] Passing data between deferred custom actions > To: chr...@deploymentengineering.com, "General discussion for Windows > Installer XML toolset." > Date: Tuesday, February 17, 2009, 6:47 AM > DTF C# > > > > On Tue, Fe

Re: [WiX-users] Passing data between deferred custom actions

2009-02-17 Thread Eitan Behar
at deserves > attention? E-Mail Me > > > --- On Tue, 2/17/09, Eitan Behar wrote: > > > From: Eitan Behar > > Subject: [WiX-users] Passing data between deferred custom actions > > To: "General discussion for Windows Installer XML toolset." < > wix-us

Re: [WiX-users] Passing data between deferred custom actions

2009-02-17 Thread Christopher Painter
What language is the CA's written in? Christopher Painter, Author of Deployment Engineering Blog Have a hot tip, know a secret or read a really good thread that deserves attention? E-Mail Me --- On Tue, 2/17/09, Eitan Behar wrote: > From: Eitan Behar > Subject: [WiX-users] P

[WiX-users] Passing data between deferred custom actions

2009-02-17 Thread Eitan Behar
Hi, Is there a proper method to pass data between deferred custom actions ? I have a bunch of chained custom actions and need to pass data between them, actually, just a boolean value "telling" the rest of the ca whether to continue. Thanks, Eitan