drop files into windows explorer
-
Does anyone know how to drag/drop files from a C# application into Windows Explorer? I've been trying to find an example on the web for hours - no luck :( Elena
-
Does anyone know how to drag/drop files from a C# application into Windows Explorer? I've been trying to find an example on the web for hours - no luck :( Elena
DataObject data=new DataObject();
data.SetData(DataFormats.FileDrop,new string[]{filename});
control.DoDragDrop(data,DragDropEffects.All);**"It is appallingly obvious that our technology exceeds our humanity." -- Albert Einstein
-
DataObject data=new DataObject();
data.SetData(DataFormats.FileDrop,new string[]{filename});
control.DoDragDrop(data,DragDropEffects.All);**"It is appallingly obvious that our technology exceeds our humanity." -- Albert Einstein
Thak you!!! It works! I can finally go home:-D Elena