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

Thread: OnDrop File

  1. #1
    Guest

    OnDrop File

    I have a application that uses dag 'n' drop
    Does anybody know how, when I call OnDrop, to get a file Name of the dragged if it is the thing being dropped ?
    Thanks


  2. #2
    Join Date
    May 1999
    Posts
    69

    Re: OnDrop File

    DragQueryFile() will give u both the number of files dropped and the names (see your documentation). DragQueryPoint() will give you the screen position where the drop occurred, and DragFinish() will wind up the drop.


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