Archive: how modify Page MUI_PAGE_INSTFILES


how modify Page MUI_PAGE_INSTFILES
Hi,
please can you help me ?

I want modify the text in the page MUI_PAGE_INSTFILES modify the label of the button Install

and remove the button back.

Can I do that please?


To change text send WM_SETTEXT message to button.
Use ResHacker to get ID ($hwnd) of button - it is either 1 or 2 or 3 :).

To remove Back button simply set it's Visibility to not visible:
ShowWindow $hwnd ${SW_HIDE}


thx
thx for your answer,

please
How can I remove button back in custom page please


The same as I posted above, the IDs are the same.


GetDlgItem + ShowWindow...