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
- :
- Applying skin to Exterior Dialog
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
Aug 10, 2011
11:26 AM
Applying skin to Exterior Dialog
Hello guys:
I am applying skin to the dialogs. Everything is fine except the skin is not applied for the experior dialog(SdFinishReboot) dialog which is called in the FirstUIAfter function. Help appreciated!!!
I am applying skin to the dialogs. Everything is fine except the skin is not applied for the experior dialog(SdFinishReboot) dialog which is called in the FirstUIAfter function. Help appreciated!!!
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Aug 10, 2011
11:38 AM
Ok...here is my sequence.....
function OnFirstUIAfter()
begin
Disable(STATUSEX);
...
...
few functions....
CreateDesktopIcon();
Enable(USE_LOADED_SKIN);
szTitle = "";
szMsg1 = "Setup has completed installing %P.";
nOption = SYS_BOOTMACHINE;
szMsg2 = "Click Finish to exit %P setup.";
nReserved = 0;
nResult = SdFinishReboot (szTitle, szMsg1, nOption, szMsg2, nReserved);
.....
......
end;
CreateDesktopIcon() function displays custom dialog...this dialog has skin applied to it...but not the sdFinishReboot dialog. No clue
function OnFirstUIAfter()
begin
Disable(STATUSEX);
...
...
few functions....
CreateDesktopIcon();
Enable(USE_LOADED_SKIN);
szTitle = "";
szMsg1 = "Setup has completed installing %P.";
nOption = SYS_BOOTMACHINE;
szMsg2 = "Click Finish to exit %P setup.";
nReserved = 0;
nResult = SdFinishReboot (szTitle, szMsg1, nOption, szMsg2, nReserved);
.....
......
end;
CreateDesktopIcon() function displays custom dialog...this dialog has skin applied to it...but not the sdFinishReboot dialog. No clue