This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: AskYesNo box always shows up behind main installer
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 18, 2013
05:07 PM
AskYesNo box always shows up behind main installer
So I have the following code and anytime it is called it appears behind everything else. Does anybody have any idea of how I can make sure this prompt shows up at the front every time?
sPromptA = "Question that is asked to user";
MODE = NORMALMODE;
if (NO = AskYesNo(sPromptA, NO)) then
MODE = SILENTMODE;
sPromptA = "Question that is asked to user";
MODE = NORMALMODE;
if (NO = AskYesNo(sPromptA, NO)) then
MODE = SILENTMODE;
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 30, 2014
06:53 AM
I have the same problem. What can I do to bring this dialog to the front.