<?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 : Format thousands separator</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Format thousands separator]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 12:16:18 +0000</pubDate>
  <lastBuildDate>Sat, 23 May 2009 20:32:07 +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=14362</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[Format thousands separator : Did somebodytried to useformated...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14362&amp;PID=49296&amp;title=format-thousands-separator#49296</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 14362<br /><strong>Posted:</strong> 23 May 2009 at 8:32pm<br /><br />Did somebody&nbsp;tried to use&nbsp;formated values in PropertyGrid? Regional settings can use decimal point or comma also use comma as thousand saparators and so on. Same question about&nbsp;currency values. <DIV>&nbsp;</DIV><DIV>btw - each ReportRecordItem have Format property so you can keep value as common sense sortable and present it in the item caption after format applied</DIV><DIV>&nbsp;</DIV><DIV>We can also add Column-based format which can be apply for any item of&nbsp; thic column (easy&nbsp;assing in the code). &nbsp;</DIV><DIV>Next step - use internal UnitManager which can convert on-fly any unitized value from permanent unit to dynamic presentation unit so app can run&nbsp;in different countries and connected to same common database</DIV><DIV>We also need to think about more rich set of column (item) types (e.g. support images or other blob data)</DIV>]]>
   </description>
   <pubDate>Sat, 23 May 2009 20:32:07 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14362&amp;PID=49296&amp;title=format-thousands-separator#49296</guid>
  </item> 
  <item>
   <title><![CDATA[Format thousands separator : First step with the value formatted...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14362&amp;PID=49268&amp;title=format-thousands-separator#49268</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5071">DavidSpain</a><br /><strong>Subject:</strong> 14362<br /><strong>Posted:</strong> 22 May 2009 at 5:46am<br /><br />First step with the value formatted text and then pass the same numerical value to the property sortpriority.<br><br>It works!<br><br>Thank you, Aaron!<br><br>]]>
   </description>
   <pubDate>Fri, 22 May 2009 05:46:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14362&amp;PID=49268&amp;title=format-thousands-separator#49268</guid>
  </item> 
  <item>
   <title><![CDATA[Format thousands separator : Hi,   If you assign values (numbers)...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14362&amp;PID=49265&amp;title=format-thousands-separator#49265</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 14362<br /><strong>Posted:</strong> 22 May 2009 at 4:45am<br /><br />Hi, <DIV>&nbsp;</DIV><DIV>If you assign values (numbers) to ReportItems it will sort correctly (even without any format).</DIV><DIV>&nbsp;</DIV><DIV>Set rec = wndReportControl.Records.Add()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set recItem = rec.AddItem(i)&nbsp;'<FONT color=#00ff00>Sort OK<BR></FONT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set recItem = rec.AddItem(i &amp; " Kb") '<FONT color=#ff0000>Sort not OK</FONT><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set recItem = rec.AddItem(i)&nbsp;'<FONT color=#00ff00>Sort OK<BR></FONT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;recItem.Format = "%s Kb "</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set recItem = rec.AddItem(FormatNumber(i / 3, 2))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; recItem.Format = "%s kb '<FONT color=#ff0000>Sort not OK</FONT>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; recItem.SortPriority = i / 3 '<FONT color=#00ff00>Now it sorts OK</FONT><BR></DIV><DIV>But you have to be carefull with&nbsp;SortPriority: <FONT color=#000000>Public Property SortPriority() As <strong>Integer</strong></FONT></DIV><DIV><strong></strong>&nbsp;</DIV><DIV><strong></strong>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 22 May 2009 04:45:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14362&amp;PID=49265&amp;title=format-thousands-separator#49265</guid>
  </item> 
  <item>
   <title><![CDATA[Format thousands separator :   Hello friends!  Regarding...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14362&amp;PID=49256&amp;title=format-thousands-separator#49256</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5071">DavidSpain</a><br /><strong>Subject:</strong> 14362<br /><strong>Posted:</strong> 21 May 2009 at 12:57pm<br /><br /><div style="text-align: left;" id="result_" dir="ltr">Hello friends! <br><br> Regarding the formats of cell in the report grid, <br> We have seen that there are plenty of potential. <br> However, we do not know how to do that in the case <br> digital formats, separate the thousands:<br><br>For example:<br>1234&nbsp; --&gt;&nbsp; 1.234<br>100000&nbsp; --&gt; 100.000<br>5876154 --&gt; 5.876.154<br><br> Is there any way through format property? <br><br> We can pass it as text, but then it does not order the data correctly. <br><br> Many thanks in advance.<br><br><br> Product: Xtreme SuitePro (ActiveX) version 13.0.0 <br>&nbsp;&nbsp;&nbsp;&nbsp; Platform: Windows XP (32bit) - SP 2 <br>&nbsp;&nbsp;&nbsp;&nbsp; Language: Visual Basic 6.0 <br></div>]]>
   </description>
   <pubDate>Thu, 21 May 2009 12:57:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14362&amp;PID=49256&amp;title=format-thousands-separator#49256</guid>
  </item> 
 </channel>
</rss>