Re: [WiX-users] How to enable/disable NEXT button on textbox keypress event

2014-10-10 Thread John Cooper
tes, etc). -Original Message- From: Bala [mailto:balakrish...@ameexusa.com] Sent: Friday, October 10, 2014 1:15 PM To: 'General discussion about the WiX toolset.' Subject: Re: [WiX-users] How to enable/disable NEXT button on textbox keypress event Hi John, Thanks for your sug

Re: [WiX-users] How to enable/disable NEXT button on textbox keypress event

2014-10-10 Thread Hoover, Jacob
a.com] Sent: Friday, October 10, 2014 1:15 PM To: 'General discussion about the WiX toolset.' Subject: Re: [WiX-users] How to enable/disable NEXT button on textbox keypress event Hi John, Thanks for your suggestions Jacob and John You mean to say we need to validate everything throug

Re: [WiX-users] How to enable/disable NEXT button on textbox keypress event

2014-10-10 Thread Bala
...@jackhenry.com] Sent: 10 October 2014 22:26 To: General discussion about the WiX toolset. Subject: Re: [WiX-users] How to enable/disable NEXT button on textbox keypress event The problem is inherent in Windows Installer Service Controls: they don't expose focus change events. As Jacob says, to get

Re: [WiX-users] How to enable/disable NEXT button on textbox keypress event

2014-10-10 Thread John Cooper
The problem is inherent in Windows Installer Service Controls: they don't expose focus change events. As Jacob says, to get full WPF control, you need to write your own custom bootstrapper. The Windows Installer Service controls just won't give you that degree of control. It's not WiX specif

Re: [WiX-users] How to enable/disable NEXT button on textbox keypress event

2014-10-10 Thread Hoover, Jacob
I believe the answer is the Windows Installer UI has limitations and the recommendation would be to use a BA, and pass in the values to your MSI via properties. This allows you to have full control over your UI and serves for a unified installation experience (when you have prerequisites). ---