Drag and drop from Windows File Explorer onto a Windows Form is not working - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:00:17Z http://stackoverflow.com/feeds/question/281706 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/281706/drag-and-drop-from-windows-file-explorer-onto-a-windows-form-is-not-working 3 Drag and drop from Windows File Explorer onto a Windows Form is not working mattruma 2008-11-11T18:12:56Z 2008-12-11T22:46:14Z <p>I'm having an issue dragging a file from Windows Explorer on to a Windows Forms application. </p> <p>It works fine when I drag text, but for some reason it is not recognizing the file. Here is my test code:</p> <pre><code>namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_DragDrop(object sender, DragEventArgs e) { } private void Form1_DragEnter(object sender, DragEventArgs e) { if (e.Data.GetDataPresent(DataFormats.Text)) { e.Effect = DragDropEffects.Copy; } else if (e.Data.GetDataPresent(DataFormats.FileDrop)) { e.Effect = DragDropEffects.Copy; } else { e.Effect = DragDropEffects.None; } } } } </code></pre> <p>AllowDrop is set to true on Form1, and as I mentioned, it works if I drag text on to the form, just not an actual file.</p> <p>I'm using Vista 64-bit ... not sure if that is part of the problem.</p> http://stackoverflow.com/questions/281706/drag-and-drop-from-windows-file-explorer-onto-a-windows-form-is-not-working/281770#281770 0 Answer by arul for Drag and drop from Windows File Explorer onto a Windows Form is not working arul 2008-11-11T18:32:10Z 2008-11-11T18:32:10Z <p>The code you posted <em>should</em> work.</p> <p>Try putting this at the beginning of the DragEnter method</p> <pre><code>string formats = string.Join( "\n", e.Data.GetFormats(false) ); MessageBox.Show( formats ); </code></pre> <p>which will dump data formats associated with the d'n'd operation. Might help us narrowing down where the problem lies.</p> http://stackoverflow.com/questions/281706/drag-and-drop-from-windows-file-explorer-onto-a-windows-form-is-not-working/282279#282279 0 Answer by mattruma for Drag and drop from Windows File Explorer onto a Windows Form is not working mattruma 2008-11-11T21:58:29Z 2008-11-11T21:58:29Z <p>I added the code that <a href="http://stackoverflow.com/questions/281706/drag-and-drop-from-windows-file-explorer-onto-a-windows-form-is-not-working#281770">arul</a> mentioned and things still didn't work, but it got me thinking. </p> <p>I started thinking it might be a Vista issue so I sent it to a friend that had Windows XP and it worked great! I then tried running it outside of the Release folder in the bin directory and what do you know it worked! </p> <p>The only time it does not work is when I am running it inside the Visual Studio 2008 IDE ... that's just weird.</p> http://stackoverflow.com/questions/281706/drag-and-drop-from-windows-file-explorer-onto-a-windows-form-is-not-working/288146#288146 3 Answer by Gene for Drag and drop from Windows File Explorer onto a Windows Form is not working Gene 2008-11-13T20:19:46Z 2008-11-13T21:09:59Z <p>The problem comes from Vista's <a href="http://en.wikipedia.org/wiki/User_Account_Control" rel="nofollow">UAC</a>. DevStudio is running as administrator, but explorer is running as a regular user. When you drag a file from explorer and drop it on your DevStudio hosted application, that is the same as a non-privileged user trying to communicate with a privileged user. It's not allowed.</p> <p>This will probably not show up when you run the app outside of the debugger. Unless you run it as an administrator there (or if Vista auto-detects that it's an installer/setup app). </p> <p>You could also <a href="http://www.neowin.net/forum/lofiversion/index.php/t575104.html" rel="nofollow">run explorer as an admin</a>, at least for testing. Or disable UAC (which I would not recommend, since you really want to catch these issues during development, not during deployment!)</p>