<?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] OLE Drag&amp;Drop doesn&#039;t work</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : [SOLVED] OLE Drag&amp;Drop doesn&#039;t work]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 02 May 2026 00:46:23 +0000</pubDate>
  <lastBuildDate>Fri, 30 Jul 2010 09:24:11 +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=15251</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] OLE Drag&amp;Drop doesn&#039;t work : hello guys, the fileuploads/20...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=59540&amp;title=solved-ole-dragdrop-doesnt-work#59540</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6273">jequita2009</a><br /><strong>Subject:</strong> 15251<br /><strong>Posted:</strong> 30 July 2010 at 9:24am<br /><br /><b><span id="result_" ="medium_text"><span title="">hello guys, the file<br></span><span title="">uploads/20091024_095934_Codejock.Report.Zip<br><br></span><span style=": rgb(255, 255, 255);" title="">comes with error <img src="http://forum.codejock.com/smileys/smiley5.gif" border="0" align="absmiddle">, I see its contents, can publish it again?</span></span></b><span id="result_" ="medium_text"><b><span title=""></span></b><span style=": rgb(255, 255, 255);" title=""><b><br>Pleaseeeeeee <img src="http://forum.codejock.com/smileys/smiley1.gif" border="0" align="absmiddle"><br>thanks.<br></b></span></span>]]>
   </description>
   <pubDate>Fri, 30 Jul 2010 09:24:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=59540&amp;title=solved-ole-dragdrop-doesnt-work#59540</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] OLE Drag&amp;Drop doesn&#039;t work : You can re-test your VB app with...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=54151&amp;title=solved-ole-dragdrop-doesnt-work#54151</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 15251<br /><strong>Posted:</strong> 24 October 2009 at 8:00pm<br /><br />You can re-test your VB app with direct drop selection to Excel with modified<BR><a href="https://forum.codejock.com/uploads/BetaOCX/ReportC&#111;ntrolBeta13-2.rar" target="_blank">https://forum.codejock.com/uploads/BetaOCX/ReportControlBeta13-2.rar</A><DIV></DIV>It works now.]]>
   </description>
   <pubDate>Sat, 24 Oct 2009 20:00:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=54151&amp;title=solved-ole-dragdrop-doesnt-work#54151</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] OLE Drag&amp;Drop doesn&#039;t work : To export in excel file after...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=54150&amp;title=solved-ole-dragdrop-doesnt-work#54150</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 15251<br /><strong>Posted:</strong> 24 October 2009 at 3:25pm<br /><br /><DIV>To export in excel file after sort applied:</DIV><DIV>Private Function CreateArray()<BR>Dim record As XtremeReportControl.ReportRecord<BR>Dim row As XtremeReportControl.ReportRow<BR>Dim recordItem As XtremeReportControl.ReportRecordItem<BR>&nbsp;&nbsp;&nbsp; 'this will also create array with non visible items, loop through rows if you want only visible items.<BR>&nbsp;&nbsp;&nbsp; 'Maybe you want to do filtering on records and only want those in xls file.<BR>&nbsp;&nbsp;&nbsp; ReDim arrayRCValues(wndReportControlFiles.Records.Count, wndReportControlFiles.Columns.Count)<BR>'&nbsp;&nbsp;&nbsp; For Each record In wndReportControlFiles.Records<BR>'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; For Each recordItem In record<BR>'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; arrayRCValues(record.Index, recordItem.Index) = recordItem.Caption<BR>'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Next recordItem<BR>'&nbsp;&nbsp;&nbsp; Next record<BR>&nbsp;&nbsp;&nbsp; For Each row In wndReportControlFiles.Rows<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set record = row.record<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; For Each recordItem In record<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; arrayRCValues(row.Index, recordItem.Index) = recordItem.Caption<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Next recordItem<BR>&nbsp;&nbsp;&nbsp; Next row<BR>End Function</DIV><DIV>&nbsp;</DIV><DIV>If you want to use drag and drop to change sort after - use new mode</DIV><DIV>SortedDragDrop = True<BR></DIV><DIV></DIV><DIV></DIV>]]>
   </description>
   <pubDate>Sat, 24 Oct 2009 15:25:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=54150&amp;title=solved-ole-dragdrop-doesnt-work#54150</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] OLE Drag&amp;Drop doesn&#039;t work :   Aaron wrote:Hi Fabian,   I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=54135&amp;title=solved-ole-dragdrop-doesnt-work#54135</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 15251<br /><strong>Posted:</strong> 24 October 2009 at 10:02am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Aaron" alt="Originally posted by Aaron" style="vertical-align: text-bottom;" /> <strong>Aaron wrote:</strong><br /><br />Hi Fabian, <DIV>&nbsp;</DIV><DIV>I tried with test project <a href="https://forum.codejock.com/forum_posts.asp?TID=11368" target="_blank">https://forum.codejock.com/forum_posts.asp?TID=11368</A>&nbsp;and it works with V13.1&nbsp;and V13.2 Beta</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV></td></tr></table> <DIV>&nbsp;</DIV><DIV>Hi Mark,</DIV><DIV>&nbsp;</DIV><DIV>But then again it doesn't work anymore when D&amp;D rows onto Excel sheet with V13.2 (<strong>it worked with previous version V13.1</strong>) See demo <a href="https://forum.codejock.com/forum_posts.asp?TID=15364" target="_blank">https://forum.codejock.com/forum_posts.asp?TID=15364</A></DIV><DIV>&nbsp;</DIV><DIV>I don't want you to say that you don't have RC V13.1 so I attached you this version</DIV><DIV>&nbsp;</DIV><DIV><a href="https://forum.codejock.com/uploads/20091024_095934_Codejock.Report.Zip" target="_blank">uploads/20091024_095934_Codejock.Report.Zip</A>&nbsp;(just change extension into .ocx)</DIV><DIV>&nbsp;</DIV><DIV>and to make it easy for you here's demo also</DIV><DIV>&nbsp;</DIV><DIV><a href="https://forum.codejock.com/uploads/20091024_100216_CreateXLSFile.zip" target="_blank">uploads/20091024_100216_CreateXLSFile.zip</A></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Sat, 24 Oct 2009 10:02:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=54135&amp;title=solved-ole-dragdrop-doesnt-work#54135</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] OLE Drag&amp;Drop doesn&#039;t work : Fabian - there is NO way to publish...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53555&amp;title=solved-ole-dragdrop-doesnt-work#53555</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 15251<br /><strong>Posted:</strong> 30 September 2009 at 7:00pm<br /><br />Fabian - there is NO way to publish any of old CORRECTED version - all fixes and improvements always going to NEW version (in current case it will be 13.2)]]>
   </description>
   <pubDate>Wed, 30 Sep 2009 19:00:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53555&amp;title=solved-ole-dragdrop-doesnt-work#53555</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] OLE Drag&amp;Drop doesn&#039;t work : There is a way to change red line...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53554&amp;title=solved-ole-dragdrop-doesnt-work#53554</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 15251<br /><strong>Posted:</strong> 30 September 2009 at 6:58pm<br /><br /><P>There is a way to change red line to other color - check PaintManager settings</P>]]>
   </description>
   <pubDate>Wed, 30 Sep 2009 18:58:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53554&amp;title=solved-ole-dragdrop-doesnt-work#53554</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] OLE Drag&amp;Drop doesn&#039;t work : Hi Aaron  You are right. I solved...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53547&amp;title=solved-ole-dragdrop-doesnt-work#53547</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=841">Fabian</a><br /><strong>Subject:</strong> 15251<br /><strong>Posted:</strong> 30 September 2009 at 9:19am<br /><br />Hi Aaron<DIV>&nbsp;</DIV><DIV>You are right. I solved the problem: OLE D&amp;D does not work as soon as the sortorder is not empty. If you remove all columns from the sort order or you set the flag .SortedDragDrop then it works nearly as in V12. The only difference is, that there is a red insertion line - but that is cosmetic.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Thanks again</DIV>]]>
   </description>
   <pubDate>Wed, 30 Sep 2009 09:19:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53547&amp;title=solved-ole-dragdrop-doesnt-work#53547</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] OLE Drag&amp;Drop doesn&#039;t work : Hi Fabian,  I removed line:...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53542&amp;title=solved-ole-dragdrop-doesnt-work#53542</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 15251<br /><strong>Posted:</strong> 30 September 2009 at 7:51am<br /><br />Hi Fabian,<DIV>&nbsp;</DIV><DIV>I removed line: <strong>wndReportControl.Records.DeleteAll</strong>&nbsp;in sub wndReportControl_OLEDragDrop and it still works OK.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 30 Sep 2009 07:51:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53542&amp;title=solved-ole-dragdrop-doesnt-work#53542</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] OLE Drag&amp;Drop doesn&#039;t work : Thanks Aaron  Yes, this sample...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53540&amp;title=solved-ole-dragdrop-doesnt-work#53540</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=841">Fabian</a><br /><strong>Subject:</strong> 15251<br /><strong>Posted:</strong> 30 September 2009 at 5:31am<br /><br />Thanks Aaron<DIV>&nbsp;</DIV><DIV>Yes, this sample works - BUT only because&nbsp;the reportcontrol is empty. As soon as you have one or more records loaded and you remove the delete command it doesn't work no more. I will send an issue report to CJ</DIV><DIV>&nbsp;</DIV><DIV>Tnaknks again</DIV>]]>
   </description>
   <pubDate>Wed, 30 Sep 2009 05:31:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53540&amp;title=solved-ole-dragdrop-doesnt-work#53540</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] OLE Drag&amp;Drop doesn&#039;t work : Hi Fabian,  I tried with test...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53527&amp;title=solved-ole-dragdrop-doesnt-work#53527</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 15251<br /><strong>Posted:</strong> 29 September 2009 at 2:06pm<br /><br />Hi Fabian,<DIV>&nbsp;</DIV><DIV>I tried with test project <a href="https://forum.codejock.com/forum_posts.asp?TID=11368" target="_blank">https://forum.codejock.com/forum_posts.asp?TID=11368</A>&nbsp;and it works with V13.1&nbsp;and V13.2 Beta</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 29 Sep 2009 14:06:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15251&amp;PID=53527&amp;title=solved-ole-dragdrop-doesnt-work#53527</guid>
  </item> 
 </channel>
</rss>