<?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 : CXTPTaskPanel Redraw Problem</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : CXTPTaskPanel Redraw Problem]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 17 Apr 2026 18:20:36 +0000</pubDate>
  <lastBuildDate>Fri, 03 Dec 2010 05:10:35 +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=3866</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[CXTPTaskPanel Redraw Problem : I am also facing the same problem,.  there...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3866&amp;PID=61665&amp;title=cxtptaskpanel-redraw-problem#61665</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6507">mmh</a><br /><strong>Subject:</strong> 3866<br /><strong>Posted:</strong> 03 December 2010 at 5:10am<br /><br />I am also facing the same problem,.<FONT size=2><P></P><DIV>there are 3 groups.,</DIV><DIV>one CXTPTaskPanelGroup&nbsp; contains 3 items,. </DIV><DIV>&nbsp;</DIV><DIV></DIV><DIV>1. first item created using AddText() - </DIV><DIV>2. Added a&nbsp;Static control</DIV><DIV>3. a treeview,.</DIV><DIV>&nbsp;</DIV><DIV>when animation happens, the sencond item "static control" is drawn over the treeview too... any help;...&nbsp; <img src="http://forum.codejock.com/smileys/smiley18.gif" height="17" width="17" border="0" alt="Ouch" title="Ouch" /></FONT></DIV>]]>
   </description>
   <pubDate>Fri, 03 Dec 2010 05:10:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3866&amp;PID=61665&amp;title=cxtptaskpanel-redraw-problem#61665</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPTaskPanel Redraw Problem : I added the CEdit and CComboBox...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3866&amp;PID=11709&amp;title=cxtptaskpanel-redraw-problem#11709</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1878">mwerner</a><br /><strong>Subject:</strong> 3866<br /><strong>Posted:</strong> 24 March 2006 at 4:35pm<br /><br />I added the CEdit and CComboBox to the dialog, removed them from the group, and everyhting works fine. No longer a problem for me.]]>
   </description>
   <pubDate>Fri, 24 Mar 2006 16:35:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3866&amp;PID=11709&amp;title=cxtptaskpanel-redraw-problem#11709</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPTaskPanel Redraw Problem : First, I want to say thanks for...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3866&amp;PID=11704&amp;title=cxtptaskpanel-redraw-problem#11704</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1878">mwerner</a><br /><strong>Subject:</strong> 3866<br /><strong>Posted:</strong> 24 March 2006 at 2:39pm<br /><br /><P>First, I want to say thanks for a great library. I have been using your product since 1999 and CodeJock has definately matured into a great component provider!</P><P>Now on to the problem:</P><P>I am using CXTPTaskPanel and have two groups. The upper group is a normal text link group, the bottom group contains an CEdit, CComboBox, and an embedded dialog (just like sample, except two groups). When I collapse/expand the top group, the dialog does not redraw correctly; thus, I get portions of the dialog controls on top of each other. Here is my code to embed the dialog:</P><FONT size=2><P>&nbsp;</P><FONT size=2><P>CXTPTaskPanelGroup* pGroup = m_wndTaskPanel.AddGroup(0);</P><P>pGroup-&gt;SetCaption(_T(</FONT><FONT color=#800000 size=2>"Filter by following criteria"</FONT><FONT size=2>));</P><P>pGroup-&gt;SetSpecialGroup();</P><P>pGroup-&gt;SetExpandable(FALSE);</P><P>pGroup-&gt;AddTextItem(_T(</FONT><FONT color=#800000 size=2>" Field to filter:"</FONT><FONT size=2>));</P><P>m_cbField.Create(WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | CBS_DROPDOWNLIST | CBS_SORT, CRect(0, 0, 0, 18), &amp;m_wndTaskPanel, 0);</P><P>m_cbField.SetFont(XTPPaintManager()-&gt;GetRegularFont());</P><P>pGroup-&gt;AddControlItem(m_cbField);</P><P><FONT size=2>pGroup-&gt;AddTextItem(_T(</FONT><FONT color=#800000 size=2>" A word or phrase in the field:"</FONT><FONT size=2>));</P><P>m_edtSearchString.CreateEx(WS_EX_CLIENTEDGE, _T(</FONT><FONT color=#800000 size=2>"Edit"</FONT><FONT size=2>), NULL, WS_CHILD | WS_VISIBLE, CRect(0, 0, 0, 20), &amp;m_wndTaskPanel, 0);</P><P>m_edtSearchString.SetFont(XTPPaintManager()-&gt;GetRegularFo nt());</P><P>pGroup-&gt;AddControlItem(m_edtSearchString);</P><P>pGroup-&gt;AddTextItem(_T(</FONT><FONT color=#800000 size=2>" "</FONT><FONT size=2>));</P></FONT><P></FONT>m_dlgFilter.Create(IDD_START_FILTER_PANE, &amp;m_wndTaskPanel);</P><P>CXTPTaskPanelGroupItem* pItem = pGroup-&gt;AddControlItem(m_dlgFilter);</P><P>pItem-&gt;GetMargins().SetRect(0, 0, 0, 0);</P><P>m_dlgFilter.SetItem(pItem);</P><P>Under Windows XP if I turn off animation for the top group everything works fine (animation on causes problem). Under Windows 2000 the dialog is fubar regardless of the top group animation setting. I have tried to invalidate, etc. but I am getting nowhere... It happens when expanding the top group.</P><P>The group combo box seems to get drawn over the dialog. Maybe I will just make the whole group a dialog and include the edit and combo box.</P><P>Any ideas?</P></FONT>]]>
   </description>
   <pubDate>Fri, 24 Mar 2006 14:39:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3866&amp;PID=11704&amp;title=cxtptaskpanel-redraw-problem#11704</guid>
  </item> 
 </channel>
</rss>