Enable "Close" button in system menu
Hello.
I've got a little problem: after my installer past MUI_PAGE_INSTFILES (that is, after copying all files), I show to users custom page: "Installation finished, bla-bla-bla". And in this custom page the "Close" button of system menu is disabled. I tryed this code:
But it's only ungrays the button. But when I click on it - nothing happens. Can I fix it somehow?EnableClose
::Call "user32::GetSystemMenu(i $HWNDPARENT,i 1) i.s"
push$1
System
pop $1
System::Call "user32::EnableMenuItem(i $1,i 0xF060,i 0)"
pop $1
FunctionEnd
>
Thanks.