User Profile

Collapse

Profile Sidebar

Collapse
vorlovsky
vorlovsky
Last Activity: Feb 24 '07, 04:24 PM
Joined: Feb 21 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • vorlovsky
    replied to Drag-drop out of windows app
    in .NET
    Hi,

    Thanks. I got as far as:

    Code:
      private void listViewContents_ItemDrag(object sender, ItemDragEventArgs e)
            {
                ListView listView = (ListView)sender;
    
                ListViewItem[] items = new ListViewItem[listView.SelectedItems.Count];
    
                int i = 0;
                foreach (ListViewItem listViewItem in listView.SelectedItems)
    ...
    See more | Go to post
    Last edited by kenobewan; Feb 21 '07, 11:19 PM. Reason: Add code tags

    Leave a comment:


  • vorlovsky
    started a topic Drag-drop out of windows app
    in .NET

    Drag-drop out of windows app

    Hi All,

    I'm working on Windows application that allows users to drop files from Windows Explorer, and saves them off somewhere.

    What I'd like to do is have the same application allow users to drag image names from the list box into Explorer(or the desktop). The application in turn would internally resolve the image path and copy the file to the Explorer.

    Has anyone ever done that? If so, can you please...
    See more | Go to post
No activity results to display
Show More
Working...