vote up 1 vote down star

Hello. I want to send a double click to a listview. From what I've read on msdn it seems I gotta send a WM_NOTIFY message and something with NM_DBLCLK. But I do not understand really well hwo to implement it. I've worked with SendMessage before but MSDN is not that clear on how to fill the structs and so:

WM_NOTIFY http://msdn.microsoft.com/en-us/library/bb775583(VS.85).aspx NM_DBLCLK http://msdn.microsoft.com/en-us/library/bb774867(VS.85).aspx

flag

0% accept rate

2 Answers

vote up 2 vote down

I suspect you are going down the wrong track. Probably the best way to send a double click message is to send two single clicks, one immediately after the other. This has the best chance of working and not surprising the app with a double click notification out of the blue.

If you want to send the notification to the parent window, then this might get you started:

NMITEMACTIVATE activate={0};
activate.hdr.hwndFrom = hWnd; // of the list view control
activate.hdr.idFrom = id; // of the list view control
activate.hdr.code = NM_DBLCLK;

activate.iItem = iItem; // the id of the list item to click
activate.iSubItem = iSubItem;
activate.ptAction = ptAction; // where the event occurred

::SendMessage(hWndParent, WM_NOTIFY, id, reinterpret_cast<LPNMITEMACTIVATE>(&activate));
link|flag
The message for single click is exactly as the double click one, NM_LCLK. I don't get the point. Sure I can do a WM_LBUTTONDBLCLK, but for using that I'd have to have the clicked item visible on the screen, which I'd like to avoid if possible. – Jorge Branco Jun 10 at 10:25
The notifaction message is sent from the list view to the parent control. There is no point in sending it to the list view. Do you want to send it to the parent? – 1800 INFORMATION Jun 10 at 10:34
I think I get your point. I thought it would be possible this way. Thanks – Jorge Branco Jun 10 at 10:38
vote up 0 vote down

WM_NOTIFY is sent to the control's parent by the control to inform the parent that an event has occurred. You will accomplish nothing by sending it to the control itself.

Otherwise, I don't really understand what you're trying to do. Can you please clarify?

link|flag
I have a listview on another program that on double click opens a window. That's why I need to double click the list view. – Jorge Branco Jun 10 at 10:32
I see. In that case 1800 INFORMATION has already provided you with a solution. – avakar Jun 10 at 11:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.