Archive: Hide description from Un Components


Hide description from Un Components
Hi List, I am attempting to hide the description from components page in the uninstaller.

I have used the same method for removing it from the installer, but from the uninstaller it doesn't work.

;---This Works
!insertmacro MUI_PAGE_COMPONENTS
Function MyFuncDir
FindWindow $R0 "#32770" "" $HWNDPARENT
GetDlgItem $R1 $R0 1042
ShowWindow $R1 ${SW_HIDE}

GetDlgItem $R1 $R0 1043
ShowWindow $R1 ${SW_HIDE}
FunctionEnd

;---This Doesnt Work
!insertmacro MUI_UNPAGE_COMPONENTS
Function MyFuncDir2
FindWindow $R0 "#32770" "" $HWNDPARENT
;GetDlgItem $R1 $R0 1042
GetDlgItem $R1 $R0 1042
ShowWindow $R1 ${SW_HIDE}

GetDlgItem $R1 $R0 1043
ShowWindow $R1 ${SW_HIDE}
FunctionEnd

any hints?
Kind Regards,
vsleepy


!define MUI_COMPONENTSPAGE_NODESC


PS
Function MyFuncDir2 -> Function un.MyFuncDir2

Damn, I knew it'd be easy
Many thnks
vsleepy