Announcement

Collapse
No announcement yet.

how modify Page MUI_PAGE_INSTFILES

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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?

  • #2
    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}
    Cool looking installers with custom design: www.graphical-installer.com
    Create Setup Pages easily: www.install-designer.com
    Build installers in Visual Studio 2005-2022: www.visual-installer.com
    or RAD Studio 2009 - 11 Alexandria: www.rad-installer.com

    Comment


    • #3
      thx

      thx for your answer,

      please
      How can I remove button back in custom page please

      Comment


      • #4
        The same as I posted above, the IDs are the same.
        Cool looking installers with custom design: www.graphical-installer.com
        Create Setup Pages easily: www.install-designer.com
        Build installers in Visual Studio 2005-2022: www.visual-installer.com
        or RAD Studio 2009 - 11 Alexandria: www.rad-installer.com

        Comment


        • #5
          GetDlgItem + ShowWindow...
          IntOp $PostCount $PostCount + 1

          Comment

          Working...
          X