private void listView2_DragDrop(object sender, DragEventArgs e)
{
ListViewItem item = e.Data.GetData(typeof(ListViewItem)) as ListViewItem;
foreach (object select in listView1.SelectedItems)
{
Point pt = this.listView2.PointToClient(new Point(e.X, e.Y));
****"HERE"**** = this.listView2.GetItemAt(pt.X, pt.Y);
}
}
i want to know if i give my object"select" used in foreach loop, my ite will display at this piont????
and how can i do that.....if not going to work this...is there go any other way to do this.....????
thanks a lot....