Drag and drop from windows forms to desktop and windows explorer?

I don't know which control you are using; most of the . Net controls have a method DoDragDrop Please use this method if it suits you.

I don't know which control you are using; most of the . Net controls have a method DoDragDrop. Please use this method if it suits you.

Private void PopulateListView() { string directoryPath=Environment. GetFolderPath(Environment.SpecialFolder. MyDocuments); String files=System.IO.Directory.

GetFiles(directoryPath); if(files! =null) { foreach(string file in files) { listView1.Items. Add(new ListViewItem(file)); } } } private void listView1_MouseDown(object sender, MouseEventArgs e) { System.Collections.Specialized.

StringCollection filePath = new System.Collections.Specialized. StringCollection(); if (listView1.SelectedItems. Count > 0) { filePath.

Add(listView1. SelectedItems0. Text); DataObject dataObject = new DataObject(); dataObject.

SetFileDropList(filePath); listView1. DoDragDrop(dataObject, DragDropEffects. Copy); } }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions