Re: CListCtrl Drag and Drop Problem
That all depends on what your Drop code looks like.
You haven't really said anything about how you are doing this. Have you set
a break point in your code to see why it fails? What is the error? What kind
of failure do you have?
AliR.
"Chris" <Chris@discussions.microsoft.com> wrote in message
news:7DE88EB6-5815-4AEA-B4C4-804913AA1714@microsoft.com...
I use MFC 4.2.
I am implementing a drag and drop function between 2 CListCtrls.
I have succeeded in the drag drop operation, but one thing that become
problem is that on Drop time, if I want to drop the source item on the
last
column of the destination item, it always failed.
Does the empty subitem / column has any relation with this problem?
I tried to drop the item at the <DROP_POINT> point at the illustration
below, BEFORE drag drop, that field is BLANK.
ID | Name | Phone
===========================
01 | Name1 | <DROP_POINT>
02 | Name2 | 12345
03 | Name3 | 55500
Thank you very much.