Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to suppress the InstallDir UI for upgrade scenario. I will get previously installed path from registry and i just want to suppress the this UI.

Is there any way to do this?

share|improve this question

2 Answers

You can use a RegistrySearch Element to retrieve the path from the registry. If it is loaded correctly you can use the search property to condition the dialog display. Here is a similar theread

share|improve this answer
Thanks. I got working by adding this <publish> in custom UI. <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">Installed OR APPLICATIONROOTDIRECTORY</Publish> .... <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2">Installed OR APPLICATIONROOTDIRECTORY1</Publish> – Ganeshkumar Jul 6 '12 at 8:49
up vote 1 down vote accepted
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">Installed OR APPLICATIONROOTDIRECTORY</Publish> 
.... 
.... 
.... 
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2">Installed OR APPLICATIONROOTDIRECTORY</Publish>

Add this code to the custom UI.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.