<?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 : GroupCaption bug?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : GroupCaption bug?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 23:04:01 +0000</pubDate>
  <lastBuildDate>Tue, 20 Feb 2007 09:04:42 +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=6190</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[GroupCaption bug? : Hi!  There is no such problem...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6190&amp;PID=20588&amp;title=groupcaption-bug#20588</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2695">vladjv</a><br /><strong>Subject:</strong> 6190<br /><strong>Posted:</strong> 20 February 2007 at 9:04am<br /><br />Hi! <br />There is no such problem 10.4.1 Thanx! ]]>
   </description>
   <pubDate>Tue, 20 Feb 2007 09:04:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6190&amp;PID=20588&amp;title=groupcaption-bug#20588</guid>
  </item> 
  <item>
   <title><![CDATA[GroupCaption bug? : Hi,Tried to reproduce your issue,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6190&amp;PID=19697&amp;title=groupcaption-bug#19697</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 6190<br /><strong>Posted:</strong> 24 January 2007 at 3:57pm<br /><br />Hi,<br><br>Tried to reproduce your issue, and it looks like in the latest version it is already fixed.<br><br>Could you plz try it with recently released 10.4.1 ?<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Wed, 24 Jan 2007 15:57:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6190&amp;PID=19697&amp;title=groupcaption-bug#19697</guid>
  </item> 
  <item>
   <title><![CDATA[GroupCaption bug? : Hello! Version:&amp;#034;Xtreme SuitePro...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6190&amp;PID=19620&amp;title=groupcaption-bug#19620</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2695">vladjv</a><br /><strong>Subject:</strong> 6190<br /><strong>Posted:</strong> 23 January 2007 at 7:07am<br /><br /><P>Hello!</P><P><strong>Version:</strong><BR>"Xtreme SuitePro ActiveX 2006"<BR>Codejock.ReportControl.ocx 10.1.0.0</P><P><BR><strong>Example project:</strong> "Xtreme SuitePro 10\Xtreme SuitePro ActiveX 2006\samples\ReportControl\C#.NET\ReportSample\ReportSample.sln" <BR><strong>file:</strong> &nbsp;&nbsp;&nbsp; frmMain.cs" <BR><strong>function:</strong> &nbsp;&nbsp; public void AddRecord(int Importance, Boolean Checked, Boolean Attachment, <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;String From, String Subject, Boolean Sent, int MsgSize, <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Boolean Read, Double Price, Boolean Received, Boolean Created, <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;String Conversation, String Contact, String Msg, String CC, <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;String Categories, String Autoforward, String DoNotAutoarch, <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;String DueBy, String Preview)</P><P><EM><strong>I hase made folowing&nbsp;changes:</strong></EM></P><P>&nbsp;&nbsp;&nbsp;//Adds a new ReportRecordItem to the Record, this can be thought of as adding a cell to a row<BR>//1&nbsp;&nbsp;&nbsp;Item = Record.AddItem("");<BR>/*2 */&nbsp;&nbsp;&nbsp;Item = Record.AddItem(Importance);<BR>&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;if (Importance == Constants.IMPORTANCE_HIGH)<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;//Assigns an icon to the item<BR>&nbsp;&nbsp;&nbsp;&nbsp;Item.Icon = Constants.RECORD_IMPORTANCE_HIGH_ICON;<BR>&nbsp;&nbsp;&nbsp;&nbsp;//Assigns a GroupCaption to the item, this is displayed in the group row when grouped by the column<BR>&nbsp;&nbsp;&nbsp;&nbsp;//this item belong to.<BR>//3&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupCaption = "Importance: Hight";<BR>&nbsp;&nbsp;&nbsp;&nbsp;//Sets the group priority of the item when grouped, the lower the number the higher the priority,<BR>&nbsp;&nbsp;&nbsp;&nbsp;//Highest priority is displayed first<BR>&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupPriority = Constants.IMPORTANCE_HIGH;<BR>&nbsp;&nbsp;&nbsp;&nbsp;//Sets the sort priority of the item when the column is sorted, the lower the number the higher the priority,<BR>&nbsp;&nbsp;&nbsp;&nbsp;//Highest priority is sorted displayed first, then by value<BR>&nbsp;&nbsp;&nbsp;&nbsp;Item.SortPriority = Constants.IMPORTANCE_HIGH;<BR>&nbsp;&nbsp;&nbsp;}</P><P>&nbsp;&nbsp;&nbsp;if (Importance == Constants.IMPORTANCE_LOW)<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;Item.Icon = Constants.RECORD_IMPORTANCE_LOW_ICON;<BR>//4&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupCaption = "Importance: Low";<BR>&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupPriority = Constants.IMPORTANCE_LOW;<BR>&nbsp;&nbsp;&nbsp;&nbsp;Item.SortPriority = Constants.IMPORTANCE_LOW;<BR>&nbsp;&nbsp;&nbsp;}</P><P>&nbsp;&nbsp;&nbsp;if (Importance == Constants.IMPORTANCE_NORMAL)<BR>&nbsp;&nbsp;&nbsp;{<BR>//5&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupCaption = "Importance: Normal";<BR>&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupPriority = Constants.IMPORTANCE_NORMAL;<BR>&nbsp;&nbsp;&nbsp;&nbsp;Item.SortPriority = Constants.IMPORTANCE_NORMAL;<BR>&nbsp;&nbsp;&nbsp;}</P><DIV><strong><EM>Then group RC by "Importanc" column. I got a bug in group names. See image:</EM></strong></DIV><P><img src="https://forum.codejock.com/uploads/20070123_065720_2.JPG" border="0"></P><P>I got the same problem in my project. This just short example.</P>]]>
   </description>
   <pubDate>Tue, 23 Jan 2007 07:07:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6190&amp;PID=19620&amp;title=groupcaption-bug#19620</guid>
  </item> 
 </channel>
</rss>