<?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 : Change Font in &#101;mbedded CDialog</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : Change Font in &#101;mbedded CDialog]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 02:46:51 +0000</pubDate>
  <lastBuildDate>Tue, 26 Apr 2005 13:33:55 +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=2150</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[Change Font in &#101;mbedded CDialog : CFont font; must be member of...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2150&amp;PID=6392&amp;title=change-font-in-embedded-cdialog#6392</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 2150<br /><strong>Posted:</strong> 26 April 2005 at 1:33pm<br /><br />CFont font; must be member of&nbsp; CFrameWnd.]]>
   </description>
   <pubDate>Tue, 26 Apr 2005 13:33:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2150&amp;PID=6392&amp;title=change-font-in-embedded-cdialog#6392</guid>
  </item> 
  <item>
   <title><![CDATA[Change Font in &#101;mbedded CDialog : Problem soved! Code fragment...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2150&amp;PID=6377&amp;title=change-font-in-embedded-cdialog#6377</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1135">Ulle</a><br /><strong>Subject:</strong> 2150<br /><strong>Posted:</strong> 26 April 2005 at 2:45am<br /><br />Problem soved!<br>Code fragment looks like this:<br><br><br>CXTPDockingPaneManager m_paneManager;<br>CXTPDockingPane* m_pwndPane;<br><br>// pane creation<br>m_paneManager.InstallDockingPanes(this);<br>m_paneManager.SetTheme(xtpPaneThemeOffice2003);<br><br>m_pwndPane = m_paneManager.CreatePane(IDR_PANE, CRect(0, 0, 400, 400), dockLeftOf);<br><br><br>// dialog creation<br>theDlg = new CPythonScriptControlDlg(...);<br>theDlg-&gt;Create(....);<br><br><br>// embedding dialog in pane<br>m_pwndPane-&gt;Attach(theDlg);<br><br><br>Inside the"OnInitDialog"-Method, set the specific font, e.g:<br>CFont font;<br>font.CreateFont(0, <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 12, <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 0, <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 0,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; FW_NORMAL,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 0,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 0,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 0,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;DEFAULT_CHARSET,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;OUT_DEFAULT_PRECIS,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;CLIP_DEFAULT_PRECIS,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;DEFAULT_QUALITY,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; FF_DONTCARE,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; "Modern");<br><br>this-&gt;SetFont (&amp;font);<br>m_cEditor.SetFont(&amp;font);&nbsp;&nbsp;&nbsp; // m_cEditor is an instance of a CEdit Object<br><br><br>]]>
   </description>
   <pubDate>Tue, 26 Apr 2005 02:45:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2150&amp;PID=6377&amp;title=change-font-in-embedded-cdialog#6377</guid>
  </item> 
  <item>
   <title><![CDATA[Change Font in &#101;mbedded CDialog : DockingPanes don&amp;#039;t change...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2150&amp;PID=6374&amp;title=change-font-in-embedded-cdialog#6374</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 2150<br /><strong>Posted:</strong> 25 April 2005 at 11:22pm<br /><br />DockingPanes don't change it. List your code here. ]]>
   </description>
   <pubDate>Mon, 25 Apr 2005 23:22:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2150&amp;PID=6374&amp;title=change-font-in-embedded-cdialog#6374</guid>
  </item> 
  <item>
   <title><![CDATA[Change Font in &#101;mbedded CDialog : Hi there,  ihave an embedded...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2150&amp;PID=6358&amp;title=change-font-in-embedded-cdialog#6358</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1135">Ulle</a><br /><strong>Subject:</strong> 2150<br /><strong>Posted:</strong> 25 April 2005 at 7:13am<br /><br />Hi there,<br><br>ihave an embedded CDialog class inside a CXTPDockingPane. <br>How can i change the font of the embedded dialog? Each time i try toset the font of the dialog, the CXTPDockingPane seems to overwrite myfont.<br><br>I hope someone can help me here, since the very bad documentation of the toolkit say nothing about this.<br>]]>
   </description>
   <pubDate>Mon, 25 Apr 2005 07:13:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2150&amp;PID=6358&amp;title=change-font-in-embedded-cdialog#6358</guid>
  </item> 
 </channel>
</rss>