jaschulz
29th September 2003 19:21 UTC
How to show HTML HELP?
At the conclusion of the installation process, I would like to user to see an HTML Help file (rather than a simple ReadMe). However, neither MUI_FINISHPAGE_RUN nor MUI_FINISHPAGE_SHOWREADME seems to be interested in my myapp.chm file. Is there a way to show such a file?
JAS
Afrow UK
29th September 2003 19:25 UTC
Exec "$INSTDIR\myapp.chm"
You can create a custom function to be run if the user checks the checkbox which could contain this. (see MUI readme)
-Stu
kichik
29th September 2003 20:05 UTC
Actually, ExecShell is better in this case because a CHM is not really an executable. But MUI_FINISHPAGE_SHOWREADME should work and works fine for me (it uses ExecShell internally). For example:
!define MUI_FINISHPAGE_SHOWREADME "C:\Program Files\TortoiseCVS\UserGuide_en.chm"
!insertmacro MUI_PAGE_FINISH