MUI_PAGE_LICENSE resize text space
i want hide MUI_LICENSEPAGE_TEXT_BOTTOM and resize license text space on the all page.
how this can be done? thanks.
Archive: MUI_PAGE_LICENSE resize text space
MUI_PAGE_LICENSE resize text space
i want hide MUI_LICENSEPAGE_TEXT_BOTTOM and resize license text space on the all page.
how this can be done? thanks.
not find how change size
Then look closer. AfrowUK gave the solution in that thread.
ok i try SetWindowPos
FindWindow $1 "#32770" "" $HWNDPARENTfont change but SetWindowPos work. next:- how hide MUI_LICENSEPAGE_TEXT_BOTTOM ?
GetDlgItem $1 $1 1000
System::Call "User32::SetWindowPos(i, i, i, i, i, i, i) b ($1, 0, 0, 100, 340, 0, 3)"
;SendMessage $1 ${WM_SETFONT} $2 0
Either use resource hacker, like AfrowUK suggested, or use the hidewindow command.
Function lic_showthanks to all. this source move but not resize text space
StrCmp $R1 '0' btncheck
FindWindow $1 "#32770" "" $HWNDPARENT
GetDlgItem $2 $1 1006
ShowWindow $2 ${SW_HIDE}
GetDlgItem $1 $1 1000
System::Call "User32::SetWindowPos(i, i, i, i, i, i, i) b ($1, 0, 0, 40, 0, 0, 1)"
btncheck:
strcmp '$0' '2' 0 end
GetDlgItem $1 $HWNDPARENT 3
EnableWindow $1 0
end:
FunctionEnd