<?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 : ASSERT in CXTPDrawHelpers.cpp</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Property Grid : ASSERT in CXTPDrawHelpers.cpp]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 22 May 2026 20:59:35 +0000</pubDate>
  <lastBuildDate>Wed, 22 Feb 2023 05:52:30 +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=24164</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[ASSERT in CXTPDrawHelpers.cpp : Still not fixed in 22.0!!! ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24164&amp;PID=78624&amp;title=assert-in-cxtpdrawhelpers-cpp#78624</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 24164<br /><strong>Posted:</strong> 22 February 2023 at 5:52am<br /><br />Still not fixed in 22.0!!! <img src="http://forum.codejock.com/smileys/smiley19.gif" border="0" alt="Cry" title="Cry" /><br>]]>
   </description>
   <pubDate>Wed, 22 Feb 2023 05:52:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24164&amp;PID=78624&amp;title=assert-in-cxtpdrawhelpers-cpp#78624</guid>
  </item> 
  <item>
   <title><![CDATA[ASSERT in CXTPDrawHelpers.cpp : In addition I see a lot of access...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24164&amp;PID=78117&amp;title=assert-in-cxtpdrawhelpers-cpp#78117</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 24164<br /><strong>Posted:</strong> 01 June 2021 at 12:13pm<br /><br /><div>In addition I see a lot of access violations in the DrawCli sample when playing around with the app.</div><div>E.g. CXTPPropertyGridView::OnSelectionChanged crashes.<br></div>]]>
   </description>
   <pubDate>Tue, 01 Jun 2021 12:13:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24164&amp;PID=78117&amp;title=assert-in-cxtpdrawhelpers-cpp#78117</guid>
  </item> 
  <item>
   <title><![CDATA[ASSERT in CXTPDrawHelpers.cpp : I can&amp;#039;t event show a property...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24164&amp;PID=78116&amp;title=assert-in-cxtpdrawhelpers-cpp#78116</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 24164<br /><strong>Posted:</strong> 01 June 2021 at 12:05pm<br /><br />I can't event show a property grid in our application because the second ASSERT in my previous post comes up whenever the control needs to be redraw, in this state the control - and thus the entire Toolkit 19.3 is absolutely unusable! <br>]]>
   </description>
   <pubDate>Tue, 01 Jun 2021 12:05:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24164&amp;PID=78116&amp;title=assert-in-cxtpdrawhelpers-cpp#78116</guid>
  </item> 
  <item>
   <title><![CDATA[ASSERT in CXTPDrawHelpers.cpp : Hi;I just try to execute our app...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24164&amp;PID=78115&amp;title=assert-in-cxtpdrawhelpers-cpp#78115</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 24164<br /><strong>Posted:</strong> 01 June 2021 at 11:40am<br /><br /><div>Hi;</div><div><br></div><div>I just try to execute our app converted from XTP19.1 to XTP19.3. <br>I can't show any property grid because</div><div><br></div><div>it crashes in <table width="99%"><tr><td><pre class="BBcode">BOOL CXTPPropertyGridToolBar::OnWndMsg(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pResult)<br>{<br>&nbsp;&nbsp; &nbsp;CXTPPropertyGrid* pGrid = DYNAMIC_DOWNCAST(CXTPPropertyGrid, GetParent());<br>&nbsp;&nbsp; &nbsp;ASSERT(NULL != pGrid);&nbsp;&nbsp; <b><font color="#FF0000">&lt;-- ASSERT is fired</font></b><br><br>&nbsp;&nbsp; &nbsp;if (pGrid-&gt;GetToolTipContext())&nbsp; <b><font color="#FF0000">&lt;-- Crash</font></b><br>&nbsp;&nbsp; &nbsp;{<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; pGrid-&gt;GetToolTipContext()-&gt;FilterToolTipMessage(this, message, wParam, lParam);<br>&nbsp;&nbsp; &nbsp;}<br><br>&nbsp;&nbsp; &nbsp;return CWnd::OnWndMsg(message, wParam, lParam, pResult);<br>}</pre></td></tr></table></div><div><br></div><div>it asserts in CXTPDrawHelpers <table width="99%"><tr><td><pre class="BBcode">CXTPBufferDCEx::CXTPBufferDCEx(HDC hDestDC, const CRect rcPaint)<br>&nbsp;&nbsp; &nbsp;: m_hDestDC(hDestDC)<br>{<br>&nbsp;&nbsp; &nbsp;ASSERT(rcPaint.left &lt;= rcPaint.right);<br>&nbsp;&nbsp; &nbsp;ASSERT(rcPaint.top &lt;= rcPaint.bottom);&nbsp;&nbsp;&nbsp; <b><font color="#FF0000">&lt;-- asserts here all the time (top==1, bottom==-1)</font></b><br><br>&nbsp;&nbsp; &nbsp;m_rect = rcPaint;<br>&nbsp;&nbsp; &nbsp;Attach(::CreateCompatibleDC(m_hDestDC));<br>&nbsp;&nbsp; &nbsp;if (NULL == m_hDC)<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; return;</pre></td></tr></table></div><div><br></div><div>How can we fix this?<br></div>]]>
   </description>
   <pubDate>Tue, 01 Jun 2021 11:40:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24164&amp;PID=78115&amp;title=assert-in-cxtpdrawhelpers-cpp#78115</guid>
  </item> 
 </channel>
</rss>