<?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 : Custom Grid Control:  Memory Leak</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Custom Grid Control:  Memory Leak]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 13 Jun 2026 14:29:42 +0000</pubDate>
  <lastBuildDate>Wed, 25 Oct 2006 11:08:38 +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=5354</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[Custom Grid Control:  Memory Leak : Thanks Oleg. Memory leak vanquished....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5354&amp;PID=16795&amp;title=custom-grid-control-memory-leak#16795</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1391">craig</a><br /><strong>Subject:</strong> 5354<br /><strong>Posted:</strong> 25 October 2006 at 11:08am<br /><br />Thanks Oleg.&nbsp; Memory leak vanquished.&nbsp; :)]]>
   </description>
   <pubDate>Wed, 25 Oct 2006 11:08:38 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5354&amp;PID=16795&amp;title=custom-grid-control-memory-leak#16795</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Grid Control:  Memory Leak : Hi,  After TrackPopupMenu ad...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5354&amp;PID=16786&amp;title=custom-grid-control-memory-leak#16786</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 5354<br /><strong>Posted:</strong> 25 October 2006 at 1:12am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>After <FONT face="Courier New">TrackPopupMenu add</DIV><DIV></DIV><DIV></DIV>pColorBar-&gt;InternalrRelease();</FONT>]]>
   </description>
   <pubDate>Wed, 25 Oct 2006 01:12:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5354&amp;PID=16786&amp;title=custom-grid-control-memory-leak#16786</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Grid Control:  Memory Leak : Poor man&amp;#039;s UML class diagram....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5354&amp;PID=16781&amp;title=custom-grid-control-memory-leak#16781</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1391">craig</a><br /><strong>Subject:</strong> 5354<br /><strong>Posted:</strong> 24 October 2006 at 4:47pm<br /><br /><font face="Courier New, Courier, mono">Poor man's UML class diagram.&nbsp; Inheritance:<br><br><br>CXTPPropertyGridItem<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>CRgbaPropertyGridItemColor<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>CRgbaColorMenuGridItem </font><br><br><br>]]>
   </description>
   <pubDate>Tue, 24 Oct 2006 16:47:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5354&amp;PID=16781&amp;title=custom-grid-control-memory-leak#16781</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Grid Control:  Memory Leak :  I&amp;#039;ve created a custom grid...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5354&amp;PID=16780&amp;title=custom-grid-control-memory-leak#16780</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1391">craig</a><br /><strong>Subject:</strong> 5354<br /><strong>Posted:</strong> 24 October 2006 at 4:44pm<br /><br />I've created a custom grid control that is leaking CXTPPopupBars.&nbsp; Is there a reason why this code would be leaking the pColorBar instead of automatically being freed by the Codejock framework?<br><br><font face="Courier New, Courier, mono">void CRgbaColorMenuGridItem::OnInplaceButtonDown()<br>{<br>&nbsp;&nbsp;&nbsp; CRect rcItem= GetItemRect();<br>&nbsp;&nbsp;&nbsp; m_pGrid-&gt;ClientToScreen(&amp;rcItem);<br>&nbsp;&nbsp;&nbsp; rcItem.left = rcItem.right - 158; // small hack. need to add CPS_XT_LEFTALLIGN<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; // Bar to contain the controls<br>&nbsp;&nbsp;&nbsp; CXTPPopupBar* pColorBar = (CXTPPopupBar*)CXTPPopupBar::CreateObject();<br>&nbsp;&nbsp;&nbsp; pColorBar-&gt;SetFlags(xtpThemeOfficeXP);<br><br>&nbsp;&nbsp;&nbsp; CXTPCommandBars::TrackPopupMenu(pColorBar, 0, rcItem.left, rcItem.bottom, m_pMsgWnd, NULL, m_pMsgWnd);<br>}</font><br>]]>
   </description>
   <pubDate>Tue, 24 Oct 2006 16:44:07 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5354&amp;PID=16780&amp;title=custom-grid-control-memory-leak#16780</guid>
  </item> 
 </channel>
</rss>