In my installer, I have an asynchronous dll custom action that executes before the welcome screen appears and gathers some necessary information for the installer to work. Before I had it set as synchronous, but what happens is there is no welcome screen for about 15 seconds or more (depending on computer). So I changed it to asynchronous which allows the welcome screen to appear, which is what I want.

But now I want the Next button to be invalid until the CA returns ERROR_SUCCESS.

Can I do this by editing the MSI with Orca? That would be my preference. Otherwise, can I do this from within another custom action?

Thanks!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can schedule a modeless dialog to appear while your custom action runs. For example, in WiX, the PrepareDlg is shown while the AppSearch standard action processes machine searches.

link|improve this answer
So all I need to do is add the modeless Dialog and put that before the custom action I want to run in the InstallUIExecute table? I saw that WiX does that, but I couldn't figure out how it all worked. – itslittlejohn Jul 20 '11 at 15:35
Yes, see "Dialog Style Bits" in the MSI SDK. The dialog stays up until another dialog replaces it. – Bob Arnson Jul 20 '11 at 23:09
Perfect! The only thing I didn't understand was that the dialog automatically disappeared when a new one popped up. Thanks! – itslittlejohn Jul 21 '11 at 15:38
feedback

Your Answer

 
or
required, but never shown

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