Archive: Show images with custom pages


Show images with custom pages
Excuse me if my english fail!

I need show a bitmap into a custom page created with Install Options plugin.

I also khow how to use a custom page with the modernUI, but without bitmaps.

The example into the Install Options directory that explain how to use bitmaps into custom pages can't work whithin the modernUI.

What i make this working?


If the bitmap file is in $PLUGINSDIR or $INSTDIR, you need to write the actual bitmap file path to the INI file before showing the InstallOptions dialog (before !insertmacro MUI_INSTALLOPTIONS_DISPLAY).

e.g.
!insertmacro MUI_INSTALLOPTIONS_WRITE "ioFile.ini" "Field #" "Text" "$PLUGINSDIR\bitmap.bmp"
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "ioFile.ini"

-Stu