Re: [WiX-users] NEXT button behavior

2010-06-10 Thread gapearce
Perfect Mike! That's what I was looking for... It works GREAT! Thanks! -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/NEXT-button-behavior-tp5163545p5166022.html Sent from the wix-users mailing list archive at Nabble.com. ---

Re: [WiX-users] NEXT button behavior

2010-06-10 Thread MikeR
I do something very similar in some of our installs. What I do is on the Next button I run my CA that validates the data, in this case a database connection string. If it's valid it moves on to the next dialog. If the connection cannot be validated a SpawnDialog event is triggered to display th

Re: [WiX-users] NEXT button behavior

2010-06-10 Thread gapearce
Hmmm. I could give that a try... My dialog has 4 edit controls on it that need to be filled in by the user, and then parsed by the DLL, Like you said, maybe another 'validate' button is the best way. I'll try a few things and report back. Thanks again... -- View this message in context: htt

Re: [WiX-users] NEXT button behavior

2010-06-10 Thread Pally Sandher
il Disclaimer -Original Message- From: gapearce [mailto:mr_gapea...@yahoo.com] Sent: 10 June 2010 17:04 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] NEXT button behavior Thanks for the quick response, Pally. That is the problem - I was hoping to not have to add an extra button. I co

Re: [WiX-users] NEXT button behavior

2010-06-10 Thread gapearce
Thanks for the quick response, Pally. That is the problem - I was hoping to not have to add an extra button. I couldn't figure out how to check everything before the user clicks the next button... Hmmm. Any other ideas? Thanks again Greg -- View this message in context: http://windows-insta

Re: [WiX-users] NEXT button behavior

2010-06-10 Thread Pally Sandher
You could disable the Next button until MYSTUFFISVALID = "1" using Control Conditions. 1 MYSTUFFISVALID = "1" But with that you will need another way to run the "ValidateMyStuff Custom Action so you may have to move it to a new button