<?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 : CXTTabCtrl problems</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Controls : CXTTabCtrl problems]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 02:42:51 +0000</pubDate>
  <lastBuildDate>Tue, 08 Dec 2009 03:00: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=13053</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[CXTTabCtrl problems : No, you need to put this statement...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=55458&amp;title=cxttabctrl-problems#55458</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2198">znakeeye</a><br /><strong>Subject:</strong> 13053<br /><strong>Posted:</strong> 08 December 2009 at 3:00am<br /><br /><P>No, you need to put this statement in all of your <U>pages'</U> OnInitDialog():</P><DIV>BOOL CMyTabPage::OnInitDialog()</DIV><DIV>{</DIV><DIV>&nbsp;&nbsp;&nbsp; CPropertyPage::OnInitDialog();</DIV><DIV>&nbsp;&nbsp;&nbsp; XTPSkinManager()-&gt;EnableThemeDialogTexture(<strong>m_hWnd</strong>, ETDT_ENABLETAB);</DIV><DIV>&nbsp;&nbsp;&nbsp; ...</DIV>]]>
   </description>
   <pubDate>Tue, 08 Dec 2009 03:00:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=55458&amp;title=cxttabctrl-problems#55458</guid>
  </item> 
  <item>
   <title><![CDATA[CXTTabCtrl problems : I&amp;#039;ve implemented the above...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=44263&amp;title=cxttabctrl-problems#44263</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3776">gmail</a><br /><strong>Subject:</strong> 13053<br /><strong>Posted:</strong> 07 January 2009 at 2:07pm<br /><br />I've implemented the above and it's working great. But it seems that my CXTPTabControl doesn't respond to mouse click so I cannot change tabs? I just placed the control onto my CDialog and I'm dynamically rearranging controls on those tabs (so user thinks it's changing tabs, but actually it just CXTPTabControls with its tabs and my own controls on CDialog changing states). How about those mouse clicks?]]>
   </description>
   <pubDate>Wed, 07 Jan 2009 14:07:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=44263&amp;title=cxttabctrl-problems#44263</guid>
  </item> 
  <item>
   <title><![CDATA[CXTTabCtrl problems : Hi,  Try m_wndTabControl.Get...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=44173&amp;title=cxttabctrl-problems#44173</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 13053<br /><strong>Posted:</strong> 06 January 2009 at 1:43am<br /><br /><P>Hi,</P><DIV>&nbsp;</DIV><DIV>Try m_wndTabControl.GetPaintManager()-&gt;SetColor(xtpTabColorWinXP);</DIV>]]>
   </description>
   <pubDate>Tue, 06 Jan 2009 01:43:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=44173&amp;title=cxttabctrl-problems#44173</guid>
  </item> 
  <item>
   <title><![CDATA[CXTTabCtrl problems : So now I&amp;#039;ve implemented CXTPTabControl...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=44158&amp;title=cxttabctrl-problems#44158</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3776">gmail</a><br /><strong>Subject:</strong> 13053<br /><strong>Posted:</strong> 05 January 2009 at 1:47pm<br /><br />So now I've implemented CXTPTabControl and it's generally working fine but I cannot seem to find how to apply that nice texture that CXTTabCtrl had. I've tried<br><br>XTPSkinManager()-&gt;EnableThemeDialogTexture(m_tabCtrl.GetSafeHwnd(),ETDT_ENABLETAB);<br><br>and<br><br>m_tabCtrl.EnableTabThemeTexture(m_tabCtrl.GetSafeHwnd(), 1);<br><br>but none of those functions apply texture? How can we achieve this?<br>]]>
   </description>
   <pubDate>Mon, 05 Jan 2009 13:47:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=44158&amp;title=cxttabctrl-problems#44158</guid>
  </item> 
  <item>
   <title><![CDATA[CXTTabCtrl problems : Sorry, CXTTabCtrl always use XTAuxData().font...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=44105&amp;title=cxttabctrl-problems#44105</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 13053<br /><strong>Posted:</strong> 05 January 2009 at 2:13am<br /><br />Sorry, CXTTabCtrl always use XTAuxData().font font.&nbsp; You can try our CXTPTabControl instead.]]>
   </description>
   <pubDate>Mon, 05 Jan 2009 02:13:21 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=44105&amp;title=cxttabctrl-problems#44105</guid>
  </item> 
  <item>
   <title><![CDATA[CXTTabCtrl problems : In my CFormView I&amp;#039;ve implemented...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=44060&amp;title=cxttabctrl-problems#44060</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3776">gmail</a><br /><strong>Subject:</strong> 13053<br /><strong>Posted:</strong> 01 January 2009 at 11:05am<br /><br />In my CFormView I've implemented CXTTabCtrl control, and in my OnInitialUpdate I set a font like m_tabCtrl.SetFont(font), and it's all working fine. But when I change tab orientation like m_tabCtrl.ModifyTabStyle(0, TCS_BOTTOM) that font is suddenly lost? I also have some icons on those tab buttons but they're drawn perfectly. It seems that font info is kept only in tab upper state (vertical left/right or horizontal bottom doesn't show my font). How to make CXTTabCtrl to work with my font in bottom orientation?]]>
   </description>
   <pubDate>Thu, 01 Jan 2009 11:05:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13053&amp;PID=44060&amp;title=cxttabctrl-problems#44060</guid>
  </item> 
 </channel>
</rss>