Clear Details Window: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Wikipedia python library)
 
m (Updated author and download links, and changed format of some pages.)
Line 15: Line 15:
</highlight-nsis>
</highlight-nsis>


Page author: techkid
Page author: [[User:techkid|techkid]]

Revision as of 12:19, 23 April 2005

Description

This code allows you to clear the nsis details window. This code Finds the window the dialog and uses SendMessage to clear the window. Kichik helped with the code.

The Function

; Clear Details in NSIS
!define LVM_DELETEALLITEMS 0x1009
Function ClearDetails
  Push $0
  FindWindow $0 "#32770" "" $HWNDPARENT
  GetDlgItem $0 $0 1016
  SendMessage $0 ${LVM_DELETEALLITEMS} 0 0
  Pop $0
FunctionEnd

Page author: techkid