Gauri Navandar
3rd September 2009 10:38 UTC
How to remove Spacetexts label from component page?
Hello Eyeryone,
I am using
1.Welcome page
2.Lic. Page
3.Component Page
4.Directory Page
5.Finish page
in my nsis script, I used the keyword 'spacetexts none' but it is still showing the default space labels on component page.
Please help me to figure out this.
Thanks in advance
Gauri
jiake
29th April 2010 06:40 UTC
;add this line before insert the components page macro
!define MUI_PAGE_CUSTOMFUNCTION_SHOW DestroyControl
!insertmacro MUI_PAGE_COMPONENTS
Function DestroyControl
FindWindow $R0 "#32770" "" $HWNDPARENT
GetDlgItem $0 $R0 1023
System::Call 'User32::DestroyWindow(i) i ($0) .s'
FunctionEnd