<?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 : Another question about CXTResizeFormView</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Another question about CXTResizeFormView]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 13 Jun 2026 05:57:56 +0000</pubDate>
  <lastBuildDate>Thu, 15 Nov 2007 09:34:09 +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=8787</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[Another question about CXTResizeFormView : I have resolved it just now, thank...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8787&amp;PID=28498&amp;title=another-question-about-cxtresizeformview#28498</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3490">ocoralan</a><br /><strong>Subject:</strong> 8787<br /><strong>Posted:</strong> 15 November 2007 at 9:34am<br /><br />I have resolved it just now, thank you.]]>
   </description>
   <pubDate>Thu, 15 Nov 2007 09:34:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8787&amp;PID=28498&amp;title=another-question-about-cxtresizeformview#28498</guid>
  </item> 
  <item>
   <title><![CDATA[Another question about CXTResizeFormView : Hi, Sorry this part gives nothing....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8787&amp;PID=28489&amp;title=another-question-about-cxtresizeformview#28489</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 8787<br /><strong>Posted:</strong> 15 November 2007 at 8:46am<br /><br />Hi,<DIV>Sorry this part gives nothing. Can you attach some small project ?</DIV>]]>
   </description>
   <pubDate>Thu, 15 Nov 2007 08:46:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8787&amp;PID=28489&amp;title=another-question-about-cxtresizeformview#28489</guid>
  </item> 
  <item>
   <title><![CDATA[Another question about CXTResizeFormView : Dear support:I create a form view...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8787&amp;PID=28474&amp;title=another-question-about-cxtresizeformview#28474</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3490">ocoralan</a><br /><strong>Subject:</strong> 8787<br /><strong>Posted:</strong> 14 November 2007 at 1:50pm<br /><br />Dear support:<br>I create a form view which is derived from CXTResizeFormView, I want the controls in this form view can be resizable, but I met a strange problem. When I launched my program, the dialog embeded in the form view can not be resizable, but when I maximize the window, It can be resizable. Why?<br><br>My code is attached here:<br><font color="#00cccc" face="Courier New, Courier, mono" size="2"><br><font color="#000099">/////////////////////////////////////////////////////////////////////////////<br>// CFundViewPage<br><br>IMPLEMENT_DYNCREATE(CFundViewPage, CXTResizeFormView)<br><br>CFundViewPage::CFundViewPage()<br>&nbsp;&nbsp;&nbsp; : CXTResizeFormView(CFundViewPage::IDD)<br>{<br>&nbsp;&nbsp;&nbsp; //{{AFX_DATA_INIT(CFundViewPage)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // NOTE: the ClassWizard will add member initialization here<br>&nbsp;&nbsp;&nbsp; //}}AFX_DATA_INIT<br>}<br><br>CFundViewPage::~CFundViewPage()<br>{<br>}<br><br>void CFundViewPage::DoDataExchange(CDataExchange* pDX)<br>{<br>&nbsp;&nbsp;&nbsp; CXTResizeFormView::DoDataExchange(pDX);<br>&nbsp;&nbsp;&nbsp; //{{AFX_DATA_MAP(CFundViewPage)<br>&nbsp;&nbsp;&nbsp; DDX_Control(pDX, IDOK, m_btnOK);<br>&nbsp;&nbsp;&nbsp; //}}AFX_DATA_MAP<br>}<br><br><br>BEGIN_MESSAGE_MAP(CFundViewPage, CXTResizeFormView)<br>&nbsp;&nbsp;&nbsp; //{{AFX_MSG_MAP(CFundViewPage)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // NOTE - the ClassWizard will add and remove mapping macros here.<br>&nbsp;&nbsp;&nbsp; //}}AFX_MSG_MAP<br>END_MESSAGE_MAP()<br><br>/////////////////////////////////////////////////////////////////////////////<br>// CFundViewPage diagnostics<br><br>#ifdef _DEBUG<br>void CFundViewPage::AssertValid() const<br>{<br>&nbsp;&nbsp;&nbsp; CXTResizeFormView::AssertValid();<br>}<br><br>void CFundViewPage::Dump(CDumpContext&amp; dc) const<br>{<br>&nbsp;&nbsp;&nbsp; CXTResizeFormView::Dump(dc);<br>}<br>#endif //_DEBUG<br><br>/////////////////////////////////////////////////////////////////////////////<br>// CFundViewPage message handlers<br><br>void CFundViewPage::OnInitialUpdate()<br>{<br>&nbsp;&nbsp;&nbsp; CXTResizeFormView::OnInitialUpdate();<br><br><br>&nbsp;&nbsp;&nbsp; SetResize(IDOK, SZ_TOP_LEFT, SZ_TOP_LEFT);<br>&nbsp;&nbsp;&nbsp; SetResize(IDCANCEL, SZ_BOTTOM_RIGHT, SZ_BOTTOM_RIGHT);<br><br>&nbsp;&nbsp;&nbsp; SetFormViewStyle();<br>}</font></font><br>]]>
   </description>
   <pubDate>Wed, 14 Nov 2007 13:50:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8787&amp;PID=28474&amp;title=another-question-about-cxtresizeformview#28474</guid>
  </item> 
 </channel>
</rss>