SChepurin
SChepurin

Reputation: 1854

Lost WM_NOTIFY from List View control

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

Answers (1)

Kirill V. Lyadvinsky
Kirill V. Lyadvinsky

Reputation: 99585

You can use Spy++ to find which window messages List View generates and whether they passed to the parent window.

Upvotes: 1

Related Questions