• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[VB.NET] Drag & Drop on Textbox
#1
[Image: 70e3a2ef99.gif]

How to do it?

[Image: 36f9fe768b.png]

1)Enable AllowDrop Property of the textbox.

2)Put the following code in DragOver Event of the textbox:

Code:
If e.Data.GetDataPresent(DataFormats.FileDrop) Then e.Effect = DragDropEffects.Copy

3)Put the Following code in DragDrop Event of the Textbox:

Code:
Dim data As Array = DirectCast(e.Data.GetData(DataFormats.FileDrop), Array)
Textbox1.Text = data.GetValue(0).ToString
  Reply


Messages In This Thread
[VB.NET] Drag & Drop on Textbox - by Clones - 11-11-2011, 04:17 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Write textbox text to a text file [VB.NET] Clones 2 14,053 02-12-2011, 02:32 AM
Last Post: latch

Forum Jump: