<?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 : Drag and Drop questions.</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Drag and Drop questions.]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 20:14:22 +0000</pubDate>
  <lastBuildDate>Thu, 12 Jul 2007 06:05:46 +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=7484</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[Drag and Drop questions. : Hi,  the parameter &amp;#039;Source&amp;#039;...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7484&amp;PID=24424&amp;title=drag-and-drop-questions#24424</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1122">mlatona</a><br /><strong>Subject:</strong> 7484<br /><strong>Posted:</strong> 12 July 2007 at 6:05am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>the parameter 'Source' is missing in the events 'OLEDragOver' and 'OLEDragDrop'. Why????</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 12 Jul 2007 06:05:46 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7484&amp;PID=24424&amp;title=drag-and-drop-questions#24424</guid>
  </item> 
  <item>
   <title><![CDATA[Drag and Drop questions. : Thanks!     Turns out, the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7484&amp;PID=24407&amp;title=drag-and-drop-questions#24407</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3115">rthoreson</a><br /><strong>Subject:</strong> 7484<br /><strong>Posted:</strong> 11 July 2007 at 4:46pm<br /><br />Thanks! <DIV>&nbsp;</DIV><DIV><DIV></DIV><DIV></DIV>Turns out, the OLE events are exaclty what I was looking for.</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 11 Jul 2007 16:46:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7484&amp;PID=24407&amp;title=drag-and-drop-questions#24407</guid>
  </item> 
  <item>
   <title><![CDATA[Drag and Drop questions. : Hi,Firstly some notes about Drag&amp;amp;Drop...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7484&amp;PID=24228&amp;title=drag-and-drop-questions#24228</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 7484<br /><strong>Posted:</strong> 05 July 2007 at 3:45pm<br /><br />Hi,<br><br>Firstly some notes about Drag&amp;Drop in report control.<br>This part was changed in latest versions and I will tell about version 11.1.3.<br>&nbsp;<br>Report Control support 2 layers of Drag&amp;Drop: <br>-- Internal Drag&amp;Drop;<br>-- OleDrop (or External Drop)<br><br>Internal Drag&amp;Drop is enabled using EnableDragDrop() method and allow you to copy or move records.<br>&nbsp;<br>OleDrop mode works only when Internal Drag&amp;Drop enabled and OLEDropMode property is set to ccOLEDropManual.<br>&nbsp;<br>When you drop records the event DropRecordsEx (and DropRecords) is fired before records collection is changed. In this event you can modify recors, add/remove records in provided collection. If you perform custom drop - remove all elements from Records collection to skip default processing.<br><br>When records dropped and control is populated - RecordsDropped event is fired.<br><br>If OleDrop mode enabled the additional events are fired:<br>&nbsp;-) OLEDragOver;<br>&nbsp;-) OLEDragDrop is fired when you drop some other data format than specified in EnableDragDrop call or when xtpReportAllowDrop flag is not set and you drop 'this control' records. <br>&nbsp;<br>'this control' records has data format specified in EnableDragDrop.<br>&nbsp;<br>When you drop 'this control' records and xtpReportAllowDrop is set -- the DropRecordsEx (and DropRecords) fired instead of OLEDragDrop.<br>&nbsp;<br>This allow you to process 'this control' records drop and External data drop separately<br><br>So, answering your questions:<br>&gt;&gt; 1.&nbsp; Is it possible to stop the control from executing an event?&nbsp; For instance, I hook the dropRecords event, do some processing to add the item to the report control manually.&nbsp; Unfortunately, when my code exits, the control itself continues to process the event and adds the items again.&nbsp; Is there a way to stop the control from adding the items or is there another way I should be handling this?&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; <br>When you perform custom drop - remove all elements from Records collection to skip default processing.<br>&nbsp;<br>&gt;&gt; 2.&nbsp; MouseMove events while dragging, none are generated.&nbsp; Is there a way to get mousemove events while dragging?<br><br>No way, but OLEDragOver is fired when OleDrop mode enabled.<br>&nbsp;<br>&gt;&gt; 3. Support for other 'drag and drop' events?&nbsp; What about support for events such as 'DragOver', 'DragEnter', 'DragLeave', 'GiveFeedBack' and 'QueryContinueDrag'?<br><br>See the description above. The existing mechanism allows you to perform all (or the most of all) operations. <br><br>--<br>WBR,<br>Serge&nbsp; <br>]]>
   </description>
   <pubDate>Thu, 05 Jul 2007 15:45:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7484&amp;PID=24228&amp;title=drag-and-drop-questions#24228</guid>
  </item> 
  <item>
   <title><![CDATA[Drag and Drop questions. : Hello everyone. I am currectly...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7484&amp;PID=24025&amp;title=drag-and-drop-questions#24025</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3115">rthoreson</a><br /><strong>Subject:</strong> 7484<br /><strong>Posted:</strong> 28 June 2007 at 9:27pm<br /><br /><P>Hello everyone.</P><DIV>I am currectly working on a C# application and I have a few questions about drag and drop for the report control.</DIV><DIV>&nbsp;</DIV><DIV>1.&nbsp; Is it possible to stop the control from executing an event?&nbsp; For instance, I hook the dropRecords event, do some processing to add the item to the report control manually.&nbsp; Unfortunately, when&nbsp;my&nbsp;code exits,&nbsp;the control itself continues to process the event&nbsp;and adds the&nbsp;items again.&nbsp;&nbsp;Is there a way to stop the control from adding the items or is there another way&nbsp;I&nbsp;should be handling this?</DIV><DIV>&nbsp;</DIV><DIV>2. &nbsp;MouseMove events while dragging, none are generated.&nbsp; Is there a way to get mousemove events while dragging?</DIV><DIV>&nbsp;</DIV><DIV>3. Support for other 'drag and drop' events?&nbsp; What about support for events such as 'DragOver', 'DragEnter', 'DragLeave', 'GiveFeedBack' and 'QueryContinueDrag'?</DIV><DIV>&nbsp;</DIV><DIV>Thanks.</DIV>]]>
   </description>
   <pubDate>Thu, 28 Jun 2007 21:27:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7484&amp;PID=24025&amp;title=drag-and-drop-questions#24025</guid>
  </item> 
 </channel>
</rss>