- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
May 14, 2012
09:59 AM
Dialog before Finish dialog
In basic MSI I'm looking for a way to have a dialog just before the last dialog.
I need to display a long message that require scroll.
I create a dialog that display an rtf file.
but I didn't find a way to display it just before the finish dialog
Is there a way to do it?
I also want to display url that user will be able to press
Thanks
Shlomi
I need to display a long message that require scroll.
I create a dialog that display an rtf file.
but I didn't find a way to display it just before the finish dialog
Is there a way to do it?
I also want to display url that user will be able to press
Thanks
Shlomi
1 Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
May 15, 2012
10:12 AM
try with this one , is from IS 2010, it might help you . Any other stuff you will know to do i guess .
copy and paste right after Dlg_SdStartCopy2: in OnFirstUIBefore
#define String szTitle , szMsg , szQuestion , szLicenseFile;
Dlg_SdLicenseEx:
szTitle = "";
szMsg = "";
szQuestion = "";
//{{IS_SCRIPT_TAG(License_File_Path)
szLicenseFile = SUPPORTDIR ^ "ReadMe.txt";
//{{IS_SCRIPT_TAG(Dlg_SdLicenseEx)
nResult = SdLicenseEx ( szTitle , szMsg , szQuestion , szLicenseFile , FALSE );
bLicenseAccepted = TRUE;
OR you should enable this one from: Installation Designer\InstallScript\Dialog Source /OnFirstUIBefore
good luck.
copy and paste right after Dlg_SdStartCopy2: in OnFirstUIBefore
#define String szTitle , szMsg , szQuestion , szLicenseFile;
Dlg_SdLicenseEx:
szTitle = "";
szMsg = "";
szQuestion = "";
//{{IS_SCRIPT_TAG(License_File_Path)
szLicenseFile = SUPPORTDIR ^ "ReadMe.txt";
//{{IS_SCRIPT_TAG(Dlg_SdLicenseEx)
nResult = SdLicenseEx ( szTitle , szMsg , szQuestion , szLicenseFile , FALSE );
bLicenseAccepted = TRUE;
OR you should enable this one from: Installation Designer\InstallScript\Dialog Source /OnFirstUIBefore
good luck.
