<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : SOLVED: UnrestrictedDragDrop &amp; RecordsDropped</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : SOLVED: UnrestrictedDragDrop &amp; RecordsDropped]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 05:36:44 +0000</pubDate>
  <lastBuildDate>Tue, 09 Mar 2010 11:11:28 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=16324</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[SOLVED: UnrestrictedDragDrop &amp; RecordsDropped : Yes, it&amp;#039;s solved! Thanks....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57500&amp;title=solved-unrestricteddragdrop-recordsdropped#57500</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 16324<br /><strong>Posted:</strong> 09 March 2010 at 11:11am<br /><br />Yes, it's solved! Thanks.]]>
   </description>
   <pubDate>Tue, 09 Mar 2010 11:11:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57500&amp;title=solved-unrestricteddragdrop-recordsdropped#57500</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: UnrestrictedDragDrop &amp; RecordsDropped : Did that help?  ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57499&amp;title=solved-unrestricteddragdrop-recordsdropped#57499</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16324<br /><strong>Posted:</strong> 09 March 2010 at 10:34am<br /><br />Did that help?]]>
   </description>
   <pubDate>Tue, 09 Mar 2010 10:34:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57499&amp;title=solved-unrestricteddragdrop-recordsdropped#57499</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: UnrestrictedDragDrop &amp; RecordsDropped : I think maybe you don&amp;#039;t understand...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57369&amp;title=solved-unrestricteddragdrop-recordsdropped#57369</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16324<br /><strong>Posted:</strong> 04 March 2010 at 12:04pm<br /><br />I think maybe you don't understand what this property is used for.&nbsp; In your sample UnrestrictedDragDrop will do nothing as the records don't have any child records.&nbsp; In the sample the Group Rows have child rows, but the records attached to these rows do not have children.<br><br>And of course TargetRecord will be Nothing if you don't drop over a row.&nbsp; You just have to test for it.<br><br>Here is one way to see if the record you dropped was dropped in the group it will appear.<br><br>Hope this helps<br><br>Private Sub repCont5_DropRecordsEx(ByVal TargetRecord As XtremeReportControl.IReportRecord, ByVal Records As XtremeReportControl.IReportRecords, ByVal Above As Boolean)<br>&nbsp;&nbsp;&nbsp; If Not TargetRecord Is Nothing Then<br>&nbsp;&nbsp;&nbsp; Dim tRecord As XtremeReportControl.ReportRecord<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.Print TargetRecord(2).Value<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; For Each tRecord In Records<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If TargetRecord(4).GroupCaption = "" Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If TargetRecord(4).Caption = tRecord(4).Caption Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.Print "5 - Sibling! : " + TargetRecord(2).Value + " - " + TargetRecord(4).Caption<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox "5 - Sibling! : " + TargetRecord(2).Value + " - " + TargetRecord(4).Caption<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Exit Sub<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If TargetRecord(4).GroupCaption = tRecord(4).GroupCaption Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.Print "5 - Sibling! : " + TargetRecord(2).Value + " - " + TargetRecord(4).Caption<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.Print "5 - Sibling! : " + TargetRecord(2).Value + " - " + TargetRecord(4).Caption<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Exit Sub<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Next<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox "5- NO SIBLINGS! " + TargetRecord(2).Value + " - " + TargetRecord(4).Caption<br>&nbsp;&nbsp;&nbsp; Else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox "repCont5_DropRecordsEx NOT DROPPED AMONG ROWS!"<br>&nbsp;&nbsp;&nbsp; End If<br>End Sub<br>]]>
   </description>
   <pubDate>Thu, 04 Mar 2010 12:04:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57369&amp;title=solved-unrestricteddragdrop-recordsdropped#57369</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: UnrestrictedDragDrop &amp; RecordsDropped :   SuperMario wrote:Can I see...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57353&amp;title=solved-unrestricteddragdrop-recordsdropped#57353</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 16324<br /><strong>Posted:</strong> 04 March 2010 at 12:31am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by SuperMario" alt="Originally posted by SuperMario" style="vertical-align: text-bottom;" /> <strong>SuperMario wrote:</strong><br /><br />Can I see code you use to check to check it?<BR></td></tr></table> <DIV></DIV><DIV></DIV><DIV></DIV><DIV></DIV><DIV>&nbsp;</DIV><DIV>Sure !<a href="http://forum.codejock.com/uploads/20100304_003117__Testproject.rar" target="_blank">uploads/20100304_003117__Testproject.rar</A></DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 04 Mar 2010 00:31:39 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57353&amp;title=solved-unrestricteddragdrop-recordsdropped#57353</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: UnrestrictedDragDrop &amp; RecordsDropped : Can I see code you use to check...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57337&amp;title=solved-unrestricteddragdrop-recordsdropped#57337</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16324<br /><strong>Posted:</strong> 03 March 2010 at 12:45pm<br /><br />Can I see code you use to check to check it?<br>]]>
   </description>
   <pubDate>Wed, 03 Mar 2010 12:45:21 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57337&amp;title=solved-unrestricteddragdrop-recordsdropped#57337</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: UnrestrictedDragDrop &amp; RecordsDropped : Yes, the RC has also OLEDragDrop...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57329&amp;title=solved-unrestricteddragdrop-recordsdropped#57329</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 16324<br /><strong>Posted:</strong> 03 March 2010 at 10:31am<br /><br /><P>Yes, the RC has also OLEDragDrop set to true!</P>]]>
   </description>
   <pubDate>Wed, 03 Mar 2010 10:31:59 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57329&amp;title=solved-unrestricteddragdrop-recordsdropped#57329</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: UnrestrictedDragDrop &amp; RecordsDropped : Do you use OLEDragDrop?  ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57327&amp;title=solved-unrestricteddragdrop-recordsdropped#57327</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16324<br /><strong>Posted:</strong> 03 March 2010 at 9:50am<br /><br />Do you use OLEDragDrop?]]>
   </description>
   <pubDate>Wed, 03 Mar 2010 09:50:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57327&amp;title=solved-unrestricteddragdrop-recordsdropped#57327</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: UnrestrictedDragDrop &amp; RecordsDropped :   SuperMario wrote:UnrestrictedDragDrop...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57308&amp;title=solved-unrestricteddragdrop-recordsdropped#57308</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 16324<br /><strong>Posted:</strong> 03 March 2010 at 1:30am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by SuperMario" alt="Originally posted by SuperMario" style="vertical-align: text-bottom;" /> <strong>SuperMario wrote:</strong><br /><br /><SPAN ="highlight">UnrestrictedDragDrop</SPAN> is set by you to True or False.&nbsp; Default is False.<BR>ReportControl.<SPAN ="highlight">UnrestrictedDragDrop</SPAN> = False<BR>If the Target Record is a child record the parent record will be reported as the target.&nbsp;&nbsp;<BR><FONT size=2><FONT size=2> </FONT></FONT></td></tr></table> <DIV>&nbsp;</DIV><DIV>If ReportControl.<SPAN ="highlight">UnrestrictedDragDrop</SPAN> = False there is an error message if I try to read the read TargetRecord properties !!!<BR></DIV>]]>
   </description>
   <pubDate>Wed, 03 Mar 2010 01:30:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57308&amp;title=solved-unrestricteddragdrop-recordsdropped#57308</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: UnrestrictedDragDrop &amp; RecordsDropped : UnrestrictedDragDrop is set by...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57282&amp;title=solved-unrestricteddragdrop-recordsdropped#57282</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16324<br /><strong>Posted:</strong> 02 March 2010 at 2:13pm<br /><br /><span ="highlight">UnrestrictedDragDrop</span> is set by you to True or False.&nbsp; Default is False.<br><br>After looking through the source:<br><br>ReportControl.<span ="highlight">UnrestrictedDragDrop</span> = False<br>If the Target Record is a child record the parent record will be reported as the target.&nbsp; <br><br>ReportControl.<span ="highlight">UnrestrictedDragDrop</span> = True<br>If the Target Record is a child record the child record will be reported as the target.&nbsp; Since it is a <font size="2"><font size="2">child record you will need to support in your app the specific actions to take with the child record.</font></font>]]>
   </description>
   <pubDate>Tue, 02 Mar 2010 14:13:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57282&amp;title=solved-unrestricteddragdrop-recordsdropped#57282</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: UnrestrictedDragDrop &amp; RecordsDropped : It seems to be a Bug in 13.3.0...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57268&amp;title=solved-unrestricteddragdrop-recordsdropped#57268</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 16324<br /><strong>Posted:</strong> 02 March 2010 at 9:25am<br /><br />It seems to be a Bug in 13.3.0 the UnrestrictedDragDrop takes no different if it is True or False. It is alwas True!]]>
   </description>
   <pubDate>Tue, 02 Mar 2010 09:25:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16324&amp;PID=57268&amp;title=solved-unrestricteddragdrop-recordsdropped#57268</guid>
  </item> 
 </channel>
</rss>