Re: [WiX-users] Asking the user a yes/no question

2008-05-01 Thread Christopher Painter
.wxs file: 1 1 Can anyone offer any advice? Thanks From: Christopher Painter [mailto:[EMAIL PROTECTED] Sent: Wednesday, 30 April 2008 10:25 PM To: Ben Greene; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Asking the user a yes/no question When wo

Re: [WiX-users] Asking the user a yes/no question

2008-05-01 Thread Christopher Painter
d WixUI_Modo.wxs file: 1 1 Can anyone offer any advice? Thanks From: Christopher Painter [mailto:[EMAIL PROTECTED] Sent: Wednesday, 30 April 2008 10:25 PM To: Ben Greene; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Asking the user a yes/no question

Re: [WiX-users] Asking the user a yes/no question

2008-04-30 Thread Ben Greene
@lists.sourceforge.net Subject: Re: [WiX-users] Asking the user a yes/no question When would you like the Modal dialog to appear? If during the UI sequence, just create a Dialog with Yes and No controls and call it with a SpawnDialog ControlEvent. From the Yes control's Control

Re: [WiX-users] Asking the user a yes/no question

2008-04-30 Thread Christopher Painter
When would you like the Modal dialog to appear? If during the UI sequence, just create a Dialog with Yes and No controls and call it with a SpawnDialog ControlEvent. From the Yes control's ControlEvent you can then call a DoAction ControlEvent to fire your CA. If not from the UI Sequen

Re: [WiX-users] Asking the user a yes/no question

2008-04-30 Thread Sebastian Brand
You will have to add a custom dialog with two buttons. There's no built in MessageBox.Show() or something similar. Best regards, Sebastian Brand Instyler Software - http://www.instyler.com On Apr 30, 2008, at 6:51 , Ben Greene wrote: > Hi, > > I’ve been searching the archives trying to find

[WiX-users] Asking the user a yes/no question

2008-04-29 Thread Ben Greene
Hi, I've been searching the archives trying to find out if I can do this, but I can't find out how I'd go about it. I would like to be able to pop up a message box, asking the user a question, with 'yes' and 'no' buttons. If the user presses 'Yes', I would like a CustomAction to execute. Is t