<?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 : Transposed Grouping</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Transposed Grouping]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 09:45:11 +0000</pubDate>
  <lastBuildDate>Wed, 19 Aug 2009 09:10:37 +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=14876</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[Transposed Grouping : Ok - get it ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52197&amp;title=transposed-grouping#52197</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 14876<br /><strong>Posted:</strong> 19 August 2009 at 9:10am<br /><br />Ok - get it]]>
   </description>
   <pubDate>Wed, 19 Aug 2009 09:10:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52197&amp;title=transposed-grouping#52197</guid>
  </item> 
  <item>
   <title><![CDATA[Transposed Grouping : It works. Thank you. Is it possible,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52194&amp;title=transposed-grouping#52194</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1122">mlatona</a><br /><strong>Subject:</strong> 14876<br /><strong>Posted:</strong> 19 August 2009 at 9:03am<br /><br />It works. Thank you. Is it possible, that you add a unicode version in your rar file?]]>
   </description>
   <pubDate>Wed, 19 Aug 2009 09:03:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52194&amp;title=transposed-grouping#52194</guid>
  </item> 
  <item>
   <title><![CDATA[Transposed Grouping : Right - fixed - please try now...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52190&amp;title=transposed-grouping#52190</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 14876<br /><strong>Posted:</strong> 19 August 2009 at 8:44am<br /><br />Right - fixed - please try now - <a href="https://forum.codejock.com/uploads/DemoVersi&#111;n/ReportC&#111;ntrolUpdated.rar" target="_blank">https://forum.codejock.com/uploads/DemoVersion/ReportControlUpdated.rar</A> ]]>
   </description>
   <pubDate>Wed, 19 Aug 2009 08:44:07 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52190&amp;title=transposed-grouping#52190</guid>
  </item> 
  <item>
   <title><![CDATA[Transposed Grouping : Try this code and it works not...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52187&amp;title=transposed-grouping#52187</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1122">mlatona</a><br /><strong>Subject:</strong> 14876<br /><strong>Posted:</strong> 19 August 2009 at 8:17am<br /><br />Try this code and it works not correct.<DIV>&nbsp;</DIV><DIV>With Me.ReportControl1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowGroupBox = True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(.Columns.Count, "Col1", 100, True)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .PlusMinus = True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .NextVisualBlock = 2<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(.Columns.Count, "Col2", 100, True)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR><FONT color=#ff3333>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(.Columns.Count, "Col3", 100, True)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR></FONT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(.Columns.Count, "Col4", 100, True)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .PlusMinus = True<BR><FONT color=#ff0000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .NextVisualBlock = -3<BR></FONT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Records.Add<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem "A"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem "B"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem "C"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Populate<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .PaintManager.ColumnPlusMinusSign = True<BR>&nbsp;&nbsp; End With</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 19 Aug 2009 08:17:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52187&amp;title=transposed-grouping#52187</guid>
  </item> 
  <item>
   <title><![CDATA[Transposed Grouping : Yes, it works, but column &amp;#039;Jan&amp;#039;...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52186&amp;title=transposed-grouping#52186</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1122">mlatona</a><br /><strong>Subject:</strong> 14876<br /><strong>Posted:</strong> 19 August 2009 at 8:14am<br /><br />Yes, it works, but column 'Jan' is visible when you collapse the column 'Q1' and this is not correct.]]>
   </description>
   <pubDate>Wed, 19 Aug 2009 08:14:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52186&amp;title=transposed-grouping#52186</guid>
  </item> 
  <item>
   <title><![CDATA[Transposed Grouping : If I modify your sample like this...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52185&amp;title=transposed-grouping#52185</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 14876<br /><strong>Posted:</strong> 19 August 2009 at 7:56am<br /><br />If I modify your sample like this - easy to see <DIV>Private Sub Form_Load()</DIV><DIV>With ReportControl1<BR>&nbsp; .Columns.Add 0, "Jan", 50, False<BR>&nbsp; .Columns.Add 1, "Feb", 50, False<BR>&nbsp; .Columns.Add 2, "Mar", 50, False<BR>&nbsp; <BR>&nbsp; With .Columns.Add(3, "Q1", 50, False)<BR>&nbsp;&nbsp;&nbsp; .PlusMinus = True<BR>&nbsp;&nbsp;&nbsp; .NextVisualBlock = -2<BR>&nbsp; End With<BR>&nbsp; <BR>&nbsp; .Columns.Add 4, "Apr", 50, False<BR>&nbsp; .Columns.Add 5, "May", 50, False<BR>&nbsp; .Columns.Add 6, "Jun", 50, False<BR>&nbsp; With .Columns.Add(7, "Q2", 50, False)<BR>&nbsp;&nbsp;&nbsp; .PlusMinus = True<BR>&nbsp;&nbsp;&nbsp; .NextVisualBlock = -2<BR>&nbsp; End With<BR>&nbsp; .PaintManager.ColumnPlusMinusSign = True<BR>&nbsp; .Populate<BR>End With</DIV><DIV>End Sub<BR></DIV><DIV>it works. Will check deep</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 19 Aug 2009 07:56:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52185&amp;title=transposed-grouping#52185</guid>
  </item> 
  <item>
   <title><![CDATA[Transposed Grouping : Thanks  Try this simple code...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52183&amp;title=transposed-grouping#52183</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 14876<br /><strong>Posted:</strong> 19 August 2009 at 7:39am<br /><br />Thanks <DIV>Try this simple code please </DIV><DIV>Private Sub Form_Load()<BR>&nbsp;&nbsp; <BR>&nbsp;&nbsp; With Me.ReportControl1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowGroupBox = True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(.Columns.Count, "Col1", 100, True)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .PlusMinus = True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .NextVisualBlock = 2<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(.Columns.Count, "Col2", 100, True)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(.Columns.Count, "Col3", 100, True)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .PlusMinus = True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .NextVisualBlock = -2<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Records.Add<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem "A"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem "B"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem "C"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Populate<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .PaintManager.ColumnPlusMinusSign = True<BR>&nbsp;&nbsp; End With<BR></DIV>]]>
   </description>
   <pubDate>Wed, 19 Aug 2009 07:39:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52183&amp;title=transposed-grouping#52183</guid>
  </item> 
  <item>
   <title><![CDATA[Transposed Grouping : Hi, here is a sample. Collapse...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52182&amp;title=transposed-grouping#52182</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1122">mlatona</a><br /><strong>Subject:</strong> 14876<br /><strong>Posted:</strong> 19 August 2009 at 7:38am<br /><br />Hi, here is a sample. Collapse column 'Q1'. Column 'Jan', 'Feb' and 'May' are hidden. Exand column 'Q1'. Only column 'Jan' and 'Feb' are visible.<a href="http://forum.codejock.com/uploads/20090819_073816_PlusMinusSample.zip" target="_blank">uploads/20090819_073816_PlusMinusSample.zip</A>]]>
   </description>
   <pubDate>Wed, 19 Aug 2009 07:38:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52182&amp;title=transposed-grouping#52182</guid>
  </item> 
  <item>
   <title><![CDATA[Transposed Grouping : Are you sure that in the moment...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52178&amp;title=transposed-grouping#52178</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 14876<br /><strong>Posted:</strong> 19 August 2009 at 7:28am<br /><br />Are you sure that in the moment you set column#5 - PlusMinus and NextVisualBlock = -2 you already have visible column#4 and column#3?]]>
   </description>
   <pubDate>Wed, 19 Aug 2009 07:28:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52178&amp;title=transposed-grouping#52178</guid>
  </item> 
  <item>
   <title><![CDATA[Transposed Grouping : Hi Mark,  the report control...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52176&amp;title=transposed-grouping#52176</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1122">mlatona</a><br /><strong>Subject:</strong> 14876<br /><strong>Posted:</strong> 19 August 2009 at 7:20am<br /><br />Hi Mark,<DIV>&nbsp;</DIV><DIV>the report control don`t work correct when I use a negative settings. Not all columns are visible, when I expand the plus minus column.</DIV><DIV>&nbsp;</DIV><DIV>Regards</DIV><DIV>Marco</DIV>]]>
   </description>
   <pubDate>Wed, 19 Aug 2009 07:20:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14876&amp;PID=52176&amp;title=transposed-grouping#52176</guid>
  </item> 
 </channel>
</rss>