SlimShady 1 Posted August 18, 2004 Hi,I would like to use two features/messages (whatever they're called).I have the following information:WM_LBUTTONDBLCLK (515 - 0x00000203)WM_CONTEXTMENU (123 - 0x0000007B)I want to use them in a listbox;I want to rightclick an item, so a popup shows up and can choose (example), delete or copy.ORI want to doubleclick an item (exactly like in Windows Explorer) and a msgbox shows up that prompts me what i want to do with the file/item.I hope you can help me. Share this post Link to post Share on other sites
Valik 478 Posted August 18, 2004 WM_* messages are window messages usually sent to your application in response to events (Such as the user moving the mouse, clicking, minimizing, et cetera). GuiSend/Recv is mostly for control specific messages you can send. They have prefixes like BM_ (Button), EM_ (Edit), et cetera (Varies from control to control). They instruct the control to change it's behavior or ask the control for the data it holds or information about it. Share this post Link to post Share on other sites
SlimShady 1 Posted August 18, 2004 1. Too bad. 2. Can you please update the helpfile with this info... Share this post Link to post Share on other sites