<?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 : Coping to Clipboard with GroupOrder Collection</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Coping to Clipboard with GroupOrder Collection]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 19:16:13 +0000</pubDate>
  <lastBuildDate>Thu, 04 Oct 2007 04:19:29 +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=8241</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[Coping to Clipboard with GroupOrder Collection : I managed to work away around...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8241&amp;PID=26894&amp;title=coping-to-clipboard-with-grouporder-collection#26894</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3293">Godzilla</a><br /><strong>Subject:</strong> 8241<br /><strong>Posted:</strong> 04 October 2007 at 4:19am<br /><br />I managed to work away around this now.. I just delete any items in the GroupOrder Collection - Populate, copy the data across, and re-add the column back into the GroupOrder Collection and finally populate - the users seem happy with this<DIV></DIV><DIV></DIV><DIV>Thanks Anyway,</DIV><DIV>Minan</DIV>]]>
   </description>
   <pubDate>Thu, 04 Oct 2007 04:19:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8241&amp;PID=26894&amp;title=coping-to-clipboard-with-grouporder-collection#26894</guid>
  </item> 
  <item>
   <title><![CDATA[Coping to Clipboard with GroupOrder Collection : Hi,  The code looks incorrect...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8241&amp;PID=26874&amp;title=coping-to-clipboard-with-grouporder-collection#26874</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 8241<br /><strong>Posted:</strong> 03 October 2007 at 5:26pm<br /><br />Hi,<br><br>The code looks incorrect at least there:<br><table width="99%"><tr><td><pre class="BBcode"><br>DO i = 0 TO nvcom1:<strike>records</strike><b>rows</b>:COUNT - 1:<br>...<br></pre></td></tr></table><br><br>--<br>WBR, <br>Serge<br>]]>
   </description>
   <pubDate>Wed, 03 Oct 2007 17:26:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8241&amp;PID=26874&amp;title=coping-to-clipboard-with-grouporder-collection#26874</guid>
  </item> 
  <item>
   <title><![CDATA[Coping to Clipboard with GroupOrder Collection : Sorry Sergy - should of explained...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8241&amp;PID=26773&amp;title=coping-to-clipboard-with-grouporder-collection#26773</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3293">Godzilla</a><br /><strong>Subject:</strong> 8241<br /><strong>Posted:</strong> 02 October 2007 at 4:00am<br /><br />Sorry Sergy - should of explained myself better..<BR><BR>I am doing all of this programmatically; so if I have a report without any columns added to the GroupOrder Collection and run the Copy function, which copies the data from all currently selected records to the clipboard, this works fine.<BR><BR>However if I add a column to the GroupOrder Collection and run the Copy function&nbsp;- nothing is sent to the clipboard..<BR><BR>Examples:<BR>This is on a trigger for a Radio Button:<BR><BR>IF INT(RS-DisplayData:SCREEN-VALUE) = 1 THEN<BR>&nbsp;&nbsp;&nbsp;nvcom1:GroupsOrder:DeleteAll.&nbsp;<BR>&nbsp;&nbsp;ELSE<BR>&nbsp;&nbsp;&nbsp;nvcom1:GroupsOrder:ADD(nvcom1:COLUMNS(0)).<BR><BR>so the user has the option to view this column as grouped or not.<BR><BR>This is the code I use to copy each row to the clipboard and build up a variable (as the clipboard is limited to 64kb).<BR><BR>&nbsp;&nbsp;DO i = 0 TO nvcom1:records:COUNT - 1:<BR>&nbsp;&nbsp;&nbsp;&nbsp;nvcom1:rows(i):SELECTED = TRUE.<BR>&nbsp;&nbsp;&nbsp;&nbsp;nvcom1:COPY.<BR>&nbsp;&nbsp;&nbsp;&nbsp;cSel = cSel + CLIPBOARD:VALUE.<BR>&nbsp;&nbsp;&nbsp;&nbsp;nvcom1:rows(i):SELECTED = FALSE.<BR>&nbsp;&nbsp;END. <DIV><BR>I hope this clarifies things...<BR><BR>Thanks again!<BR>Minan</DIV>]]>
   </description>
   <pubDate>Tue, 02 Oct 2007 04:00:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8241&amp;PID=26773&amp;title=coping-to-clipboard-with-grouporder-collection#26773</guid>
  </item> 
  <item>
   <title><![CDATA[Coping to Clipboard with GroupOrder Collection : Do you mean you select some group...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8241&amp;PID=26739&amp;title=coping-to-clipboard-with-grouporder-collection#26739</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 8241<br /><strong>Posted:</strong> 01 October 2007 at 6:18pm<br /><br />Do you mean you select some group rows with regular ones? In this case them will be simply skipped when copying...<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Mon, 01 Oct 2007 18:18:18 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8241&amp;PID=26739&amp;title=coping-to-clipboard-with-grouporder-collection#26739</guid>
  </item> 
  <item>
   <title><![CDATA[Coping to Clipboard with GroupOrder Collection : Hi  I am trying to Copy(over...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8241&amp;PID=26679&amp;title=coping-to-clipboard-with-grouporder-collection#26679</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3293">Godzilla</a><br /><strong>Subject:</strong> 8241<br /><strong>Posted:</strong> 01 October 2007 at 5:57am<br /><br /><P>Hi </P><P>I am trying to Copy(over to the clipboard) the records in the Report Control with the first column added to the GroupOrder Collection - However I find that nothing is being copied across. Works fine if I don't have any columns in the GroupOrder Collections. Any suggestions on how to get around this..?</P><P>Thanks<BR>Minan</P>]]>
   </description>
   <pubDate>Mon, 01 Oct 2007 05:57:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8241&amp;PID=26679&amp;title=coping-to-clipboard-with-grouporder-collection#26679</guid>
  </item> 
 </channel>
</rss>