Hello,
I was wondering if anyone knew how to get a DropTarget's info. Say I have multiple textboxes and when I drop data into one of them, I would like to be able to get the name of the textbox that I dropped data into.
I was playing around with e.DropTargets.ToString();
But didn't really get anything out of it.
Thanks for any help,
Kiet
Hello Kiet,
I think you need to access the DragDropEventArgs.DropTarget property.
Best regards.Plamen.
Thank you both for the replies. Just what I needed!!