I'd like to Drag and drop text beetwen two views in an MDI application. How can I change default cursor during the drag and drop operation.
Thanks.
Printable View
I'd like to Drag and drop text beetwen two views in an MDI application. How can I change default cursor during the drag and drop operation.
Thanks.
Use CView::OnDragOver(). In this function, you can change the cursor to whatever you want, to give visual feedback. Just remember to keep your code small and fast, 'cause this function will be called continuously as you drag!
-Hardeep