<?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 : Bug or Feature</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Bug or Feature]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 02 May 2026 00:45:54 +0000</pubDate>
  <lastBuildDate>Sat, 06 May 2006 14:09:44 +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=4141</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[Bug or Feature :    See the Value type:   ...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4141&amp;PID=12714&amp;title=bug-or-feature#12714</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4141<br /><strong>Posted:</strong> 06 May 2006 at 2:09pm<br /><br /><div><div><span style="font-family: 'Tahoma'; font-size: 15px; color: rgb(0, 0, 0); : transparent;">See the Value type:</span></div><div><span style="font-family: 'Tahoma'; font-size: 15px; color: rgb(0, 0, 0); : transparent;"> </span></div><div><span style="font-family: 'Tahoma'; font-size: 15px; color: rgb(0, 0, 0); : transparent;">    </span><span style="font-family: 'Tahoma'; font-size: 15px; color: rgb(128, 128, 128); : transparent;">it will ignores any character added behind number or turn to zero where first is not a number.<br><br></span></div><div><span style="font-family: 'Courier New'; font-size: 15px; color: rgb(0, 0, 0); : transparent;"> </span></div><div><span style="font-family: 'Tahoma'; font-size: 15px; color: rgb(0, 0, 0); : transparent;">This is a normal behavior when Value type is 'Long' or 'double'.<br><br></span></div><div><span style="font-family: 'Courier New'; font-size: 15px; color: rgb(0, 0, 0); : transparent;"> </span></div><div><span style="font-family: 'Tahoma'; font-size: 15px; color: rgb(0, 0, 0); : transparent;"><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Quote" alt="Quote" style="vertical-align: text-bottom;" /> </span></div></div><div><span style="font-family: 'Tahoma'; font-size: 15px; color: rgb(0, 0, 0); : transparent;">    </span><span style="font-family: 'Tahoma'; font-size: 15px; color: rgb(128, 128, 128); : transparent;">Item.Value = Format(Item.Value, "##############.#0")<br></td></tr></table><br></span></div><div><span style="font-family: 'Tahoma'; font-size: 15px; color: rgb(0, 0, 0); : transparent;">This code sets Value type to 'String': which accepts any character.<br><br><br></span></div><div><span style="font-family: 'Courier New'; font-size: 15px; color: rgb(0, 0, 0); : transparent;"> </span>--<br>WBR,<br>Serge<br></div>]]>
   </description>
   <pubDate>Sat, 06 May 2006 14:09:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4141&amp;PID=12714&amp;title=bug-or-feature#12714</guid>
  </item> 
  <item>
   <title><![CDATA[Bug or Feature :   In Report Control when i added...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4141&amp;PID=12693&amp;title=bug-or-feature#12693</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1973">barianto</a><br /><strong>Subject:</strong> 4141<br /><strong>Posted:</strong> 05 May 2006 at 5:59am<br /><br />In Report Control when i added new row with data type double<br><br><table width="99%"><tr><td><pre class="BBcode"><br>AddRecord LembagaPenjaminBank, "",<span style="font-weight: bold;"> 0</span>, 0, Date<br><br>Sub AddRecord(Penjamin As LembagaPenjamin, NomorReferensi As String, <span style="font-weight: bold;">Nilai As Double</span>, Plafon As Double, JatuhTempo As Date)<br>&nbsp;&nbsp;&nbsp; Dim Record As ReportRecord<br>&nbsp;&nbsp;&nbsp; Dim Item As ReportRecordItem<br>&nbsp;&nbsp;&nbsp; Dim LastIndex As Long<br>&nbsp;&nbsp;&nbsp; Set Record = rpcJaminan.Records.Add()<br>&nbsp;&nbsp;&nbsp; LastIndex = Record.Index<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem(Penjamin)<br>&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem(NomorReferensi)<br>&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem(Nilai)<br>&nbsp;&nbsp;&nbsp; 'Item.Format = "Rp. %s"<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem(Plafon)<br>&nbsp;&nbsp;&nbsp; Item.Editable = False<br>&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem(JatuhTempo)<br>&nbsp;&nbsp;&nbsp; rpcJaminan.Populate<br>&nbsp;&nbsp;&nbsp; rpcJaminan.Navigator.MoveLastRow<br>End Sub<br><br></pre></td></tr></table><br><br>it will ignores any character added behind number or turn to zero where first is not number<br><br>but when i added request_edit event<br><br><table width="99%"><tr><td><pre class="BBcode"><br>Private Sub rpcJaminan_RequestEdit(ByVal Row AsXtremeReportControl.IReportRow, ByVal Column AsXtremeReportControl.IReportColumn, ByVal Item AsXtremeReportControl.IReportRecordItem, Cancel As Boolean)<br>&nbsp;&nbsp;&nbsp; If Item.Index = <span style="font-weight: bold;">COLUMN_NILAI</span> Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Item.Value &gt; 0 Then<br>    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&amp ;nbs p; Item.Value = Format(Item.Value, "##############.#0")<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<br>    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&amp ;nbs p; Item.Value = Format(Item.Value, "##############")<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp; End If<br>End Sub<br></pre></td></tr></table><br><br>it will accept any character in front and behind<br><br>]]>
   </description>
   <pubDate>Fri, 05 May 2006 05:59:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4141&amp;PID=12693&amp;title=bug-or-feature#12693</guid>
  </item> 
 </channel>
</rss>