Click here to Skip to main content
Licence 
First Posted 9 Aug 2007
Views 22,689
Downloads 787
Bookmarked 16 times

Drag and Drop text containing file in textbox.

By | 27 Sep 2007 | Article
You can drag and drop text file or any other file which contains text in textbox.

Introduction

In many of application we need drag and drop functionality; in that same context this article helps you to drag and drop text containing file in to text box. This is a simplest method which I found for text file drag and drop. In case of drag and drop Microsoft .NET has provided support by may properties to control, events and methods.

In this application you can drag and drop a file which may of any extension but contains text in it. For text container I used textbox. For performing drag and drop I handled DragEnter, DragDrop event of TextBox and the AllowDrop property.

Property

AllowDrop

This property is set to true for any control for which we want drag and drop support. This control may be a TextBox which holds data.

Events

DragEnter

This event is fired whenever the mouse with a pressed left button will enter into a control's region. At that time, the control's DragEnter event is fired. Generally, we require to check the type of data available, which is done as follows.

private void txtFileContent_DragEnter(object sender, DragEventArgs e)
{
    // If file is dragged, show cursor "Drop allowed"
    if (e.Data.GetDataPresent(DataFormats.FileDrop))
        e.Effect = DragDropEffects.Copy;
    else
    e.Effect = DragDropEffects.None;
}

DragDrop

This event is fired when the left mouse button is released by the user and the user intends to drop data on the target control. Generally, the target control accepts data here as follows.

private void txtFileContent_DragDrop(object sender, DragEventArgs e)
{
    try
    { 
        Array a = (Array) e.Data.GetData(DataFormats.FileDrop);
        if(a != null)
        {
            string s = a.GetValue(0).ToString();
            this.Activate();
        OpenFile(s);
        }
    }
    catch(Exception ex)
    {
        MessageBox.Show("Error in DragDrop function: " + ex.Message);
    }
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Shinde Sachin

Software Developer (Senior)
Patni, India
India India

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThanks for the article PinmemberMember 1112233:05 24 Aug '10  
GeneralDragAllow property is AllowDrop PinmemberJYX13:48 3 Sep '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 27 Sep 2007
Article Copyright 2007 by Shinde Sachin
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid