Search found 7 matches

by cordov
14 Jan 2008, 17:51
Forum: ExplorerListView
Topic: ListView Drag Image
Replies: 15
Views: 31155

Classic drag image is a huge beast for me, I don't want to imagine what kind of animal could be the Aero one!!

Maybe, we'll change all the implementetion of the code.
I think your sample could really help me to reach my target.

Thank you very much
Luigi
by cordov
14 Jan 2008, 16:34
Forum: ExplorerListView
Topic: ListView Drag Image
Replies: 15
Views: 31155

Wow, that's a really ...erm... strange approach What is the best approach? Pinvoke? If I remember correctly, native listview supports the DI_GETDRAGIMAGE message directly. It should create a drag image of the selected items automatically. However, I'm not sure custom draw will work in this case. I'...
by cordov
14 Jan 2008, 15:54
Forum: ExplorerListView
Topic: ListView Drag Image
Replies: 15
Views: 31155

An other question... Have you ever drawn by yourself the "transparent" images with the approch to collect the message and modify the LParam? Have you ever experienced if it really works?

Thank you
Luigi
by cordov
14 Jan 2008, 15:49
Forum: ExplorerListView
Topic: ListView Drag Image
Replies: 15
Views: 31155

Hi timo, thank you for your reply. I created a shell extention to have the transparent dragged Images, as windows explore does. i took the code from http://www.codeproject.com/KB/miscctrl/Ghost_drag_image.aspx?print=true, it works for a listView control, but gives problem using a custom drawn listvi...
by cordov
14 Jan 2008, 12:38
Forum: ExplorerListView
Topic: ListView Drag Image
Replies: 15
Views: 31155

Sorry I saw an other your post.. http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=756391&SiteID=1 Maybe you break your head wih this damn listview so many time, that you can understand my frustration :) Is it posssible to have a part of the code that show how you get the message and how you...
by cordov
14 Jan 2008, 12:17
Forum: ExplorerListView
Topic: ListView Drag Image
Replies: 15
Views: 31155

Re: Clarification

Thank you for your reply. I need to do that if (message.Msg == 49210) because the message is registered in the dll that execute the shell extention and the function RegisterWindowMessage is not part of the .NET 2.0, so I can't use it. Anyway, this solution looks like working because the message is a...
by cordov
14 Jan 2008, 11:16
Forum: ExplorerListView
Topic: ListView Drag Image
Replies: 15
Views: 31155

ListView Drag Image

Hi everyone. I'm desperately looking for an help. I saw your old post to http://www.ureader.com/message/1283952.aspx Well, I' m creating a custom listview. To allow the image dragging I follow the example in http://www.codeproject.com/KB/miscctrl/Ghost_drag_image.aspx?print=true It works fine, excep...