Re: [WiX-users] Burn managed UI - how to cancel and rollback?

2013-08-23 Thread tom
In order to show a dialog you need to pause the engine thread one why to do it is to use some kind of a mutex -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-managed-UI-how-to-cancel-and-rollback-tp7577071p7588377.html Sent from the

Re: [WiX-users] Burn managed UI - how to cancel and rollback?

2012-09-20 Thread Rob Mensching
args is passed to you on the events. If you can return a result it has a Result property. Set the args.Result property to the Cancel enum value. On Wed, Sep 19, 2012 at 9:01 PM, Kannan24 skan...@syncfusion.com wrote: Hi, I have the same problem, can you please explain with detail? i.e how

Re: [WiX-users] Burn managed UI - how to cancel and rollback?

2012-09-20 Thread Kannan24
Hi Rob, Thanks for your help. Before cancel the installation, i want to conform from user with another dialog box. When i show the dialog box, the controls are not shown in the dialog box ( i think it may be threading running). Please refer the screenshot below.

Re: [WiX-users] Burn managed UI - how to cancel and rollback?

2012-09-19 Thread Kannan24
Hi, I have the same problem, can you please explain with detail? i.e how to set the args.Result to cancel? Is there any events for set args.cancel? Could you help for this? Thanks, Kannan -- View this message in context:

Re: [WiX-users] Burn managed UI - how to cancel and rollback?

2012-05-26 Thread Rob Mensching
Set the args.Result to cancel on a callback and the engine will stop progressing as soon as possible and rollback if appropriate. On Fri, May 25, 2012 at 1:40 PM, Nick Ramirez nickra...@hotmail.com wrote: So, assuming I put a cancel button onto my managed bootstrapper application UI, can

[WiX-users] Burn managed UI - how to cancel and rollback?

2012-05-25 Thread Nick Ramirez
So, assuming I put a cancel button onto my managed bootstrapper application UI, can anyone say what's the best practice for carrying it out? Do I somehow trigger a rolled back on the entire chain of packages? If so, what's the method to call? I've been looking through the WiX demo setup, but I'm