Answers:
1. Yes, you just add the textbox(s) to the event handler using the Handles keyword.
----------------------------------------------------------
Private Sub TextBox_DragDrop(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles TextBox1.DragDrop, TextBox2.DragDrop
'add your code here
End Sub
----------------------------------------------------------
2. As shown above, "sender" is the textbox that receives the DragDrop, so you can use this.
J
|