<?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 : Grouping questi&#111;n.....</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Grouping questi&#111;n.....]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 26 Apr 2026 00:21:44 +0000</pubDate>
  <lastBuildDate>Thu, 27 Apr 2006 09:19:19 +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=4071</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[Grouping questi&#111;n..... : Ok Serge, Thanks for the suggestions....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4071&amp;PID=12467&amp;title=grouping-question#12467</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=289">flauzer</a><br /><strong>Subject:</strong> 4071<br /><strong>Posted:</strong> 27 April 2006 at 9:19am<br /><br /><P>Ok Serge, Thanks for the suggestions.&nbsp; <BR>&nbsp; <BR>I was thinking about writing some code that doesn't depend on the items, but really of the&nbsp;property of the column: in fact I could write a "filter-function" during the loading of the items to resolve the matter of the case-insensitive items....</P><P>for example (in vb) str = Ucase(str).</P><P>But if you have a&nbsp;grid that "binds" some generic-recordsets it's difficult to work with the items,..... it would be better&nbsp;a property that says&nbsp;"group items in case-insensitive mode...".</P><P>I hope to have been enough clear (excuse my English<IMG src="http://forum.codejock.com/smileys/smiley9.gif" border="0">)</P><P>I think that this property could be useful....If you could add it to a&nbsp;10.2.....it would be appreciated </P><P>Thanks<BR></P>]]>
   </description>
   <pubDate>Thu, 27 Apr 2006 09:19:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4071&amp;PID=12467&amp;title=grouping-question#12467</guid>
  </item> 
  <item>
   <title><![CDATA[Grouping questi&#111;n..... : Try following example. Place wndReport...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4071&amp;PID=12457&amp;title=grouping-question#12457</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4071<br /><strong>Posted:</strong> 27 April 2006 at 5:56am<br /><br />Try following example. Place wndReport to clear Form1:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>Private Sub Form_Load()<br>&nbsp;&nbsp;&nbsp; wndReport.Columns.Add 0, "Items", 50, True<br>&nbsp;&nbsp;&nbsp; wndReport.Columns.Add 1, "Proj", 100, True<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; wndReport.ShowGroupBox = True<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Dim Record As ReportRecord<br>&nbsp;&nbsp;&nbsp; Dim Item As ReportRecordItem<br>&nbsp;&nbsp;&nbsp; Dim str As String<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; For i = 1 To 16<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Record = wndReport.Records.Add<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; str = "Item " &amp; CStr(i)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem(str)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; str = "project 1"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If i &gt; 4 Then str = "Project 1"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If i &gt; 8 Then str = "Project 2"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If i &gt; 12 Then str = "project 2"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem(str)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If i &gt; 8 Then<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; Item.GroupPriority = 2<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; Item.GroupCaption = "Title for Project 2"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; Item.GroupPriority = 1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; Item.GroupCaption = "Title for Project 1"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp; Next i<br><br>&nbsp;&nbsp;&nbsp; wndReport.Populate<br>End Sub<br></pre></td></tr></table><br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Thu, 27 Apr 2006 05:56:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4071&amp;PID=12457&amp;title=grouping-question#12457</guid>
  </item> 
  <item>
   <title><![CDATA[Grouping questi&#111;n..... : Sorry, Serge I don&amp;#039;t understand.... suppose...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4071&amp;PID=12454&amp;title=grouping-question#12454</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=289">flauzer</a><br /><strong>Subject:</strong> 4071<br /><strong>Posted:</strong> 27 April 2006 at 5:13am<br /><br /><P>Sorry, Serge I don't understand....<IMG src="http://forum.codejock.com/smileys/smiley9.gif" border="0"></P><P>suppose you have 5&nbsp;columns, and the user drag one column 'PROJ' for grouping....</P><P>We can see:</P><P>PROJ</P><P>&nbsp;&nbsp; PROJ: <strong>Project 1</strong></P><UL><LI>item1 <LI>item2 <LI>...</LI></UL><P>&nbsp;&nbsp; PROJ: <strong>project 1</strong>&nbsp;&nbsp;&nbsp;&nbsp; </P><UL><LI>item3 <LI>item4 <LI>...</LI></UL><P>How to make 'PROJ' column case-insensitive, so that items for </P><P>Project1 and project1&nbsp;belong to the&nbsp;same group????</P><P>Have you an example?</P><P>Thanks</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Thu, 27 Apr 2006 05:13:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4071&amp;PID=12454&amp;title=grouping-question#12454</guid>
  </item> 
  <item>
   <title><![CDATA[Grouping questi&#111;n..... : Try using SortPriority + GroupPriority...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4071&amp;PID=12453&amp;title=grouping-question#12453</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4071<br /><strong>Posted:</strong> 27 April 2006 at 4:19am<br /><br />Try using SortPriority + GroupPriority properties, it seems to do what you want.<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Thu, 27 Apr 2006 04:19:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4071&amp;PID=12453&amp;title=grouping-question#12453</guid>
  </item> 
  <item>
   <title><![CDATA[Grouping questi&#111;n..... : Is there a way to have case-insensitive...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4071&amp;PID=12450&amp;title=grouping-question#12450</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=289">flauzer</a><br /><strong>Subject:</strong> 4071<br /><strong>Posted:</strong> 27 April 2006 at 3:52am<br /><br /><P>Is there a way to have case-insensitive groups?</P><P>In other words, its possible to have a property&nbsp; <A href="mk:@MSITStore:C:\Programmi\Codejock%20Software\ActiveX\Xtreme%20SuitePro%20ActiveX%202006\help\SymbolReference.chm::/XtremeReportC&#111;ntrol~ReportColumn_members.html" target="_blank">ReportColumn</A>.CompareMethod&nbsp; </P><P>in which I can set for example.....CompareMethod = optTextCompare </P><P>In 10.2 ???</P><P>Thanks</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Thu, 27 Apr 2006 03:52:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4071&amp;PID=12450&amp;title=grouping-question#12450</guid>
  </item> 
 </channel>
</rss>