Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-06-03 Thread Nick Ramirez
You can remove the Sleep from the example. I used it to show the progress bar with several pauses. In a real application, your function would call the "DisplayActionData" function at times when you decide to show a message and increment the bar. Now that I think about it, my DisplayActionData func

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-06-03 Thread Velu
HI Nick, Thanks very much for the Quick reply. Here i explain more about my problem we have more than 15 custom action it takes 30 minutes to complete installation. We already have the ProgressText for the all the Custom action . In our installation only problem is progress bar is not displayed

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-06-03 Thread Nick Ramirez
If I understand your question, you want to increment the progress bar for more than one custom action? You'd just need to reuse the code in those custom actions too, either by duplicating it or putting it in some central assembly. If you didn't want to reset the progress bar each time, you could s

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-06-03 Thread Velu
Hi Nick, It was working fine. Thanks for your code. My problem is i have several custom action. I have to show the progress while running that all custom action. You code work for only that particulat custom action. How can i achieve this for all custom actions ? Please help me on this ? Reg

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-05-21 Thread Nick Ramirez
You don't need to have an immediate custom action. Here are some pointers. 1. The progress bar appears and is incremented during the deferred stage, so any custom actions that run during this phase can update the bar. It's nice to see some text that says what's happning when you control the progr

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-05-21 Thread Wilson, Phil
aa367525(VS.85).aspx Phil Wilson -Original Message- From: Velu [mailto:velusa...@syncfusion.com] Sent: Friday, May 21, 2010 12:23 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Show the ProgressBar while Running the Custom Action Hi Willson, Thanks for your reply. Thi

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-05-21 Thread Velu
Hi Willson, Thanks for your reply. This following WIX code is am using to call the Progress Custom action. As per your suggestion i have calling the custom action in both deferred and immediate. Whether it is correct ? NOT Installed NOT Installed Do you any other ways to show the pr

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-05-20 Thread Wilson, Phil
f the mechanism. Phil Wilson -Original Message- From: Velu [mailto:velusa...@syncfusion.com] Sent: Thursday, May 20, 2010 10:50 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Show the ProgressBar while Running the Custom Action Hi Willson, Thanks for your reply.

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-05-20 Thread Velu
Hi Willson, Thanks for your reply. Can you please explain a little bit more here ?. I need to have two custom action with Immediate and Deferred Whether that WordPress Managed Custom Action is correct to display the progress Bar ? Pls assits me on this Thanks, Velu -- View this message in c

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-05-20 Thread Wilson, Phil
From: Velu [mailto:velusa...@syncfusion.com] Sent: Wednesday, May 19, 2010 9:34 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Show the ProgressBar while Running the Custom Action HI In our installer progress bar is not displayed when the custom action is running. We are using the Ma

[WiX-users] Show the ProgressBar while Running the Custom Action

2010-05-19 Thread Velu
HI In our installer progress bar is not displayed when the custom action is running. We are using the Manager Custom action. I have tried by executing the Custom Action in Both Deferred and Immediate custom action. But the Progress text alone changed but no progress bar. I have also tried this