I have what it should be, a simple drag'n'drop question. I have a new Win Form project in which the form is resolved using AllowDrop = true . It should also be mentioned that I am running the 64-bit version of Windows 7.
To be sure, I signed up for
this.DragDrop += new System.Windows.Forms.DragEventHandler(Form1_DragDrop);
.
But when I launch the application and drag something from my desktop or explorer, it points with the mouse pointer icon, which I am not allowed at all in it.
I found a similar question similar to this one (but Win Vista), in which the problem was that Visual Studio worked with admin privileges that were not in Windows Explorer. But creating an application and running executable results in the same problem.
I have done this many times in the past and Google could not find a way to solve this problem. What am I missing?
source share