Cant drag from IE to my C# app

  • Thread starter Thread starter commanderjason
  • Start date Start date
C

commanderjason

Im trying to drag links into my c# windows app.

my code is pretty straitforward for this test


private void Form1_DragEnter(object sender, DragEventArgs e)
{
e.Effect = DragDropEffects.All;
}

This will show the allowdrag icon for everything, files work, links
from firefox work. But links dragged from IE will only display the
circle with the lin through it.

Is this a problem with IE or am i missing something?


any help appreciated
 
I would try the DragOver event. The DragEnter event is a one time event
when the drag operation enters the control.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top