Reputation: 1854
I have a C++/Win32 application with List View control. When the application is started and controls are initialized it receives WM_NOTIFY if the item is selected or changed in List View.
But after opening another window from menu (for instance, "Open file" dialog) the WM_NOTIFY is lost - no notifications received in MainDialog::DialogProc().
Any suggestions how to restore input from List View?
Upvotes: 0
Views: 624
Reputation: 99585
You can use Spy++ to find which window messages List View generates and whether they passed to the parent window.
Upvotes: 1