So I have this piece of code:
e.Control.AllowDrop = true;
e.Control.Click += new EventHandler(btnClick);
e.Control.DragEnter += new DragEventHandler(btn_dropEnter);
e.Control.DragDrop += new DragEventHandler(btn_DragDrop);
the DragDrop event is only triggered when Im running it in debug with Visual Studio. When I run the same exe file it won't trigger. (Testing with attaching the process in Visual studio and placing break points)
Any ideas?
This used to work a while ago I don't remember changing it at all :(
Thanks