<?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 : Codejock Tab Control Appearance</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Controls : Codejock Tab Control Appearance]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 03:31:45 +0000</pubDate>
  <lastBuildDate>Fri, 02 Aug 2013 11:16:47 +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=21830</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[Codejock Tab Control Appearance : This is the current styling I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=21830&amp;PID=71478&amp;title=codejock-tab-control-appearance#71478</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8010">Skreen</a><br /><strong>Subject:</strong> 21830<br /><strong>Posted:</strong> 02 August 2013 at 11:16am<br /><br />This is the current styling I have on a Codejock Tab Control<div><br></div><div><img src="uploads/8010/Current_Styling_&#111;n_Codejock_Tab_C&#111;ntrol.png" height="441" width="423" border="0" /><br></div><div><br></div><div>And this is the styling I would like where the height of the selected tab is slightly higher than the inactive tabs.</div><div><br></div><div><img src="uploads/8010/Desired_Styling_&#111;n_Codejock_Tab_C&#111;ntrol.png" height="441" width="423" border="0" /><br></div><div><br></div><div>As you will notice there is a slight difference in the tab height of the selected tab and the inactive tabs. Is it possible to control the height of tabs like this while retaining the same styling as shown?</div><div><br></div><div>After adding a&nbsp;<span style="line-height: 1.4;">Suite Controls 16.2.0 </span><span style="line-height: 1.4;">Tab Control&nbsp;</span><span style="line-height: 1.4;">in a VB6</span><span style="line-height: 1.4;">&nbsp;</span><span style="line-height: 1.4;">to a form, here is the code I am using to style the appearance of the tab control.</span></div><div><br></div><div><pre style="color: rgb51, 51, 51; margin-top: 0px; margin-bottom: 0px;"><span style="color: rgb0, 136, 0; font-weight: bold;">Private</span> <span style="color: rgb0, 136, 0; font-weight: bold;">Sub</span> <span style="color: rgb0, 102, 187; font-weight: bold;">Form_Load</span>()        TabPage1.BackColor = RGB(<span style="color: rgb0, 0, 221; font-weight: bold;">255</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">255</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">255</span>)    TabPage2.BackColor = RGB(<span style="color: rgb0, 0, 221; font-weight: bold;">255</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">255</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">255</span>)        TabControl1.DrawFocusRect = <span style="color: rgb0, 136, 0; font-weight: bold;">False</span>        TabControl1.PaintManager.HotTracking = <span style="color: rgb0, 136, 0; font-weight: bold;">True</span>        TabControl1.PaintManager.Appearance = xtpTabAppearanceFlat    TabControl1.PaintManager.Color = xtpTabColorDefault        TabControl1.PaintManager.ColorSet.FrameBorder = RGB(<span style="color: rgb0, 0, 221; font-weight: bold;">165</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">172</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">181</span>)    TabControl1.PaintManager.ColorSet.ButtonNormal = RGB(<span style="color: rgb0, 0, 221; font-weight: bold;">212</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">216</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">221</span>)    TabControl1.PaintManager.ColorSet.ButtonSelected = RGB(<span style="color: rgb0, 0, 221; font-weight: bold;">255</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">255</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">255</span>)    TabControl1.PaintManager.ColorSet.ButtonHighlighted = RGB(<span style="color: rgb0, 0, 221; font-weight: bold;">228</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">233</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">237</span>)    TabControl1.PaintManager.ColorSet.HighlightText = RGB(<span style="color: rgb0, 0, 221; font-weight: bold;">0</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">0</span>, <span style="color: rgb0, 0, 221; font-weight: bold;">0</span>)        TabControl1.PaintManager.HeaderMargin.Top = <span style="color: rgb0, 0, 221; font-weight: bold;">3</span>    TabControl1.PaintManager.HeaderMargin.Left = <span style="color: rgb0, 0, 221; font-weight: bold;">3</span>        TabControl1.PaintManager.ButtonMargin.Top = <span style="color: rgb0, 0, 221; font-weight: bold;">3</span>    TabControl1.PaintManager.ButtonMargin.Bottom = <span style="color: rgb0, 0, 221; font-weight: bold;">3</span>    <span style="color: rgb0, 136, 0; font-weight: bold;">End</span> <span style="color: rgb0, 136, 0; font-weight: bold;">Sub</span></pre></div>]]>
   </description>
   <pubDate>Fri, 02 Aug 2013 11:16:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=21830&amp;PID=71478&amp;title=codejock-tab-control-appearance#71478</guid>
  </item> 
 </channel>
</rss>