Re: [WiX-users] Custom Action Setting a Control value

2008-11-25 Thread Richard
In article <[EMAIL PROTECTED]>, "Chris Matthews" <[EMAIL PROTECTED]> writes: > >The property associated with an edit control is updated when the focus > >leaves the edit control. Is that consistent with what you're seeing? > > No because the focus is already lost as I have clicked on the

Re: [WiX-users] Custom Action Setting a Control value

2008-11-25 Thread Chris Matthews
>The property associated with an edit control is updated when the focus >leaves the edit control. Is that consistent with what you're seeing? No because the focus is already lost as I have clicked on the push button to fire the custom action the edit control never updates. It is a bit annoying,

Re: [WiX-users] Custom Action Setting a Control value

2008-11-25 Thread Richard
In article <[EMAIL PROTECTED]>, "Chris Matthews" <[EMAIL PROTECTED]> writes: > I have now removed the Subscribe and the field still updates. So yes it > looks like the ICEs aren't validating the Event Column in EventMapping. > The one annoying thing is that if I set the Edit Control to enabl

Re: [WiX-users] Custom Action Setting a Control value

2008-11-25 Thread Chris Matthews
: Re: [WiX-users] Custom Action Setting a Control value In article <[EMAIL PROTECTED]>, "Chris Matthews" <[EMAIL PROTECTED]> writes: > Yes it passes all ICEs. [...] Interesting. Does it still work if you take out the Subscribe? > > > Height="16&

Re: [WiX-users] Custom Action Setting a Control value

2008-11-24 Thread Richard
In article <[EMAIL PROTECTED]>, "Chris Matthews" <[EMAIL PROTECTED]> writes: > Yes it passes all ICEs. [...] Interesting. Does it still work if you take out the Subscribe? > > > Height="16" Property="LFM_SERVER_ROOT" TabSkip="no" Disabled="yes" > > > > > See, I'm thinking that even

Re: [WiX-users] Custom Action Setting a Control value

2008-11-24 Thread Chris Matthews
[WiX-users] Custom Action Setting a Control value In article <[EMAIL PROTECTED]>, "Chris Matthews" <[EMAIL PROTECTED]> writes: > Height="16" Property="LFM_SERVER_ROOT" TabSkip="no" Disabled="yes" > > > Does this p

Re: [WiX-users] Custom Action Setting a Control value

2008-11-24 Thread Richard
In article <[EMAIL PROTECTED]>, "Chris Matthews" <[EMAIL PROTECTED]> writes: > Height="16" Property="LFM_SERVER_ROOT" TabSkip="no" Disabled="yes" > > > Does this produce an MSI that passes all ICEs? I'm curious because while I've done the no-op "set a property to its existing value" t

Re: [WiX-users] Custom Action Setting a Control value

2008-11-24 Thread Chris Matthews
1 Christopher Matthews -Original Message- From: Chris Matthews [mailto:[EMAIL PROTECTED] Sent: 24 November 2008 08:39 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Custom Action Setting a Control value Hi, I do tie the control to the LFM_Server

Re: [WiX-users] Custom Action Setting a Control value

2008-11-24 Thread Chris Matthews
n was pressed on. Any ideas? Christopher Matthews -Original Message- From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 21 November 2008 20:47 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Custom Action Setting a Control value Chris Matthews wrote: > Wi

Re: [WiX-users] Custom Action Setting a Control value

2008-11-21 Thread Bob Arnson
Chris Matthews wrote: > Within the Custom action I set LFM_SERVER_ROOT and I want this value to > be written to the MachineName control when I return back from the action > how is this done? > MSI supports updating a control "live" only for the property it's tied to. -- sig://boB http://joyof

[WiX-users] Custom Action Setting a Control value

2008-11-21 Thread Chris Matthews
I have the following code:- 1 1 Within the Custom action I set LFM_SERVER_ROOT and I want this value to be written to the MachineName control when I return back from the action how is this do