Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: libPPUI listview ctrl not send some useful info when notify (Read 1226 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

libPPUI listview ctrl not send some useful info when notify

libPPUI  listview (when used in dark mode) discard some common used fields when notify. In my case, I need the subitem when dbclick:

Code: [Select]
LRESULT CListControlWithSelectionBase::OnLButtonDblClk(UINT,WPARAM p_wp,LPARAM p_lp,BOOL& bHandled) {
...
t_size item;
if (ItemFromPoint(pt,item)) {
// t_size subItem = SubItemFromPoint(...);
ExecuteDefaultAction(item/*, subItem*/);
return 0;
}
        ....
}

Re: libPPUI listview ctrl not send some useful info when notify

Reply #1
I have latest libPPUI not on the main SDK page. I hope Peter doesn't mind me attaching.

I think there are relevant fixes for you.




Re: libPPUI listview ctrl not send some useful info when notify

Reply #2
I have latest libPPUI not on the main SDK page. I hope Peter doesn't mind me attaching.

I think there are relevant fixes for you.





thanks!