ListNotificationReceived
 
ListNotificationReceived is called when the parent window receives a notification message from the child window: WM_COMMAND, WM_NOTIFY, WM_MEASUREITEM or WM_DRAWITEM
 
Declaration:
 
int __stdcall ListNotificationReceived(HWND ListWin,int Message,WPARAM wParam,LPARAM lParam);
 
Description of parameters:
 
ListWin Hande to your list window created with ListLoad
 
Message The received message, one of the following: WM_COMMAND, WM_NOTIFY, WM_MEASUREITEM or WM_DRAWITEM.
 
wParam The WPARAM parameter of the message.
 
lParam The LPARAM parameter of the message.
 
Return value:
 
Return the value described for that message in the Windows API help.
 
Notes:
 
Do not implement this function if you don't use any owner-drawn controls and don't require any notification messages! Possible applications: Owner-drawn Listview control, reacting to scroll messages, etc.