CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Cursor and Drag And Drop

    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.


  2. #2
    Join Date
    May 1999
    Posts
    69

    Re: Cursor and Drag And Drop

    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


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured