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
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