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
- :
- How to show MessageBox as stay-on-top?
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
Mar 24, 2010
11:25 AM
How to show MessageBox as stay-on-top?
Hi,
I created a custom action named MyFunction(HWND) using InstallScript and added this function as in "Custom Actionsand Sequences" view. MyFunction(HWND) is so simple as follows:
function MyFunction(hMSI)
begin
MessageBox ( "Welcome to the tutorial installation !", INFORMATION);
end;
When I execute the resultant setup.exe from Windows Explorer, after the setup configures Windows Installer, it seems to be hunged. However, when Windows Explorer window is minimized, the message box is displayed.
How can I bring the message box, that is generated by InstallScript, front?
-Best regards.
-Yavuz
I created a custom action named MyFunction(HWND) using InstallScript and added this function as
function MyFunction(hMSI)
begin
MessageBox ( "Welcome to the tutorial installation !", INFORMATION);
end;
When I execute the resultant setup.exe from Windows Explorer, after the setup configures Windows Installer, it seems to be hunged. However, when Windows Explorer window is minimized, the message box is displayed.
How can I bring the message box, that is generated by InstallScript, front?
-Best regards.
-Yavuz
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Aug 25, 2010
03:56 AM
I am having the same issue. Any ideas how to bring the message box to front. Thank you.