Archive: MUI_WELCOMEFINISHPAGE_BITMAP language dependent


MUI_WELCOMEFINISHPAGE_BITMAP language dependent
hi folks,

is it possible to use different MUI bitmaps, dependent on the chosen language?
The Problem is that for me it works only by defining MUI_WELCOMEFINISHPAGE_BITMAP during initialisation (quit at the beginning of the script) and MUI_LANGDLL_DISPLAY in .onInit.
Is there any possibility for a workaround?

Thanks a lot!


Welcome/Finish pages are IO custom pages indeed, you may customize them at runtime using the functions pre/show, for your case you need to include/extract the different bitmaps and set the corresponding to the selected lang bitmap at runtime in the MUI_PAGE_CUSTOMFUNCTION_PRE, see MUI documentation for details.


thanks for the hint!