<?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 : [SOLVED] Row height</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : [SOLVED] Row height]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 14 May 2026 19:56:51 +0000</pubDate>
  <lastBuildDate>Fri, 13 May 2011 03:29:58 +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=18099</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[[SOLVED] Row height : ok! thanks   ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18099&amp;PID=64363&amp;title=solved-row-height#64363</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6596">mlg</a><br /><strong>Subject:</strong> 18099<br /><strong>Posted:</strong> 13 May 2011 at 3:29am<br /><br />ok! thanks]]>
   </description>
   <pubDate>Fri, 13 May 2011 03:29:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18099&amp;PID=64363&amp;title=solved-row-height#64363</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Row height : @mlg: Did his answer helped you? ...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18099&amp;PID=63505&amp;title=solved-row-height#63505</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1755">ABuenger</a><br /><strong>Subject:</strong> 18099<br /><strong>Posted:</strong> 23 March 2011 at 8:23am<br /><br />@mlg: Did his answer helped you?<br><br>]]>
   </description>
   <pubDate>Wed, 23 Mar 2011 08:23:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18099&amp;PID=63505&amp;title=solved-row-height#63505</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Row height : You can use the xtpCustomMeasureRow...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18099&amp;PID=63461&amp;title=solved-row-height#63461</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 18099<br /><strong>Posted:</strong> 22 March 2011 at 10:23am<br /><br />You can use the xtpCustomMeasureRow flag with the SetCustomDraw method, and then change the row height based on dynamic requirements in the MeasureRow event.<br><br>Something like:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>Option Explicit<br><br>Private Sub Form_Load()<br>&nbsp;&nbsp; Dim i As Long<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; With Me.ReportControl1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetCustomDraw xtpCustomMeasureRow<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Columns.Add .Columns.Count, "Test", 100, True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; For i = 0 To 99<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Records.Add<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem i<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Next i<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Populate<br>&nbsp;&nbsp; End With<br>End Sub<br><br>Private Sub ReportControl1_MeasureRow(ByVal Row As XtremeReportControl.IReportRow, ByVal hDC As stdole.OLE_HANDLE, ByVal Width As Long, Height As Long)<br>&nbsp;&nbsp; If Row.Index Mod 2 = 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Height = 75 ' Pixels<br>&nbsp;&nbsp; End If<br>End Sub<br></pre></td></tr></table><br>]]>
   </description>
   <pubDate>Tue, 22 Mar 2011 10:23:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18099&amp;PID=63461&amp;title=solved-row-height#63461</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Row height :  Hi!I can change the row height?I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18099&amp;PID=63454&amp;title=solved-row-height#63454</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6596">mlg</a><br /><strong>Subject:</strong> 18099<br /><strong>Posted:</strong> 22 March 2011 at 5:57am<br /><br />Hi!<br><br>I can change the row height?<br><br>I known to can&nbsp; FixedRow but I can't change the row height.<br><br><br>Thanks!!<br><br>]]>
   </description>
   <pubDate>Tue, 22 Mar 2011 05:57:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18099&amp;PID=63454&amp;title=solved-row-height#63454</guid>
  </item> 
 </channel>
</rss>