lameri
private void listView_ItemDrag(object sender, System.Windows.Forms.ItemDragEventArgs e)
{
DoDragDrop( e.Item, DragDropEffects.Copy | DragDropEffects.Move ); }I'm not sure how to use the info dragged in the dataGrid...
private void dataGrid_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
// Previous definitions...// private DataTable customerTable = new DataTable("customerTable");
// Added 3 columns.// dataGrid.DataSource = customerTable;
}The e.Item that is dragged seems to be just having the contents of the first column, not the second and third??Thank you!