Drag and Dropping an Object Reference VB.Net - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T06:30:54Zhttp://stackoverflow.com/feeds/question/321471http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/321471/drag-and-dropping-an-object-reference-vb-net0Drag and Dropping an Object Reference VB.NetDamien2008-11-26T17:15:46Z2009-08-29T07:33:06Z
<p>I am trying to 'swap' two cells' contents, and their mappings. To do this, I need to drag and drop a reference to the cell as opposed to the string value itself. I can then use this reference to update a Dictionary as well as get the value. It allows allows me to do the swap as I will have a reference to the old cell to add the value needed in there.</p>
<p>The problem I am having is I am not sure how to pass the cell reference:</p>
<pre><code>Private Sub DataGridView1_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles DataGridView1.MouseDown
If e.Button = MouseButtons.Left Then
DataGridView1.DoDragDrop(DataGridView1.CurrentCell, DragDropEffects.Copy)
End If
End Sub
</code></pre>
<p>and in the drop event:</p>
<pre><code>Private Sub DataGridView1_DragDrop(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles DataGridView1.DragDrop
'Problem is here -->'Dim copyedFromCell As DataGridViewCell = DirectCast(e.Data(), DataGridViewCell)**
Dim copyedFromKey As String = GetMappingForCell(copyedFromCell)
Dim thisKey As String = GetMappingForCell(DataGridView1.CurrentCell)
Dim copyedFromValue As String = copyedFromCell.Value
Dim thisValue As String = DataGridView1.CurrentCell.Value
mappings(copyedFromKey) = DataGridView1.CurrentCell
mappings(thisKey) = copyedFromCell
DataGridView1.CurrentCell.Value = copyedFromValue
copyedFromCell.Value = thisValue
End Sub
</code></pre>
<p>Is what I am trying to do possible? Have I completely broken it? Thanks :)</p>
http://stackoverflow.com/questions/321471/drag-and-dropping-an-object-reference-vb-net/322407#3224070Answer by Helen Toomik for Drag and Dropping an Object Reference VB.NetHelen Toomik2008-11-26T22:39:26Z2008-11-26T22:39:26Z<p>So what is the problem with the code you posted?</p>
http://stackoverflow.com/questions/321471/drag-and-dropping-an-object-reference-vb-net/323266#3232660Answer by Damien for Drag and Dropping an Object Reference VB.NetDamien2008-11-27T08:55:51Z2008-11-27T08:55:51Z<p>The link were I have posted "This is the Problem" is not working correctly..It's not the correct way to get the reference.</p>
http://stackoverflow.com/questions/321471/drag-and-dropping-an-object-reference-vb-net/607707#6077071Answer by Daniel LeCheminant for Drag and Dropping an Object Reference VB.NetDaniel LeCheminant2009-03-03T19:09:27Z2009-03-07T06:21:21Z<p>Your <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.drageventargs.data.aspx" rel="nofollow"><code>e.Data</code></a> is a <a href="http://msdn.microsoft.com/en-us/library/system.windows.idataobject.aspx" rel="nofollow"><code>IDataObject</code></a>, <strong>not</strong> the value you sent with <code>DoDragDrop</code>. </p>
<p>To get the value you sent, you must call <a href="http://msdn.microsoft.com/en-us/library/94ckfkxz.aspx" rel="nofollow"><code>e.Data.GetData(...)</code></a>.</p>
<p>To fix your code, replace the problem line with:</p>
<pre><code>Dim copiedFromCell As DataGridViewCell = _
e.Data.GetData(GetType(DataGridViewTextBoxCell))
</code></pre>
<p>(or whatever the type of <code>DataGridView1.CurrentCell</code> is.)</p>
<p>You can get a list of types available to be dropped by calling <a href="http://msdn.microsoft.com/en-us/library/1745023c.aspx" rel="nofollow"><code>e.Data.GetFormats()</code></a>.</p>