Re: [WiX-users] Update progress bar from deferred custom action

2010-05-03 Thread Dariel Marlow
03, 2010 6:37 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Update progress bar from deferred custom action Dariel, Here are two c# functions that should help you work with the progress bar from a managed custom action. If you're using unmanaged c++

Re: [WiX-users] Update progress bar from deferred custom action

2010-05-03 Thread Matt Johnson
ica.com] Sent: Sunday, May 02, 2010 8:26 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Update progress bar from deferred custom action Dariel, I'm doing this in a managed custom action (c#). I'll post it here first thing tomorrow. -Matt Sent

Re: [WiX-users] Update progress bar from deferred custom action

2010-05-02 Thread Matt Johnson
Dariel, I'm doing this in a managed custom action (c#). I'll post it here first thing tomorrow. -Matt Sent from my iPhone On May 2, 2010, at 7:52 PM, "Rob Mensching" wrote: > The WiX toolset uses WcaProgressMessage() to do this. There are a > number of > examples in the WiX custom actio

Re: [WiX-users] Update progress bar from deferred custom action

2010-05-02 Thread Rob Mensching
The WiX toolset uses WcaProgressMessage() to do this. There are a number of examples in the WiX custom action code using it. On Sun, May 2, 2010 at 7:03 PM, Dariel Marlow wrote: > I've followed the example on MSDN ( > http://msdn.microsoft.com/en-us/library/aa367525(VS.85).aspx) about adding > c

[WiX-users] Update progress bar from deferred custom action

2010-05-02 Thread Dariel Marlow
I've followed the example on MSDN (http://msdn.microsoft.com/en-us/library/aa367525(VS.85).aspx) about adding custom actions to the progress bar, however, only the action text updates. The progress bar does not move. Does anyone have an example of how to update the progress bar from within a cu