<?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 : Crash on clicking field with combobox</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Crash on clicking field with combobox]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 03 Apr 2026 22:47:00 +0000</pubDate>
  <lastBuildDate>Tue, 22 Sep 2020 03:26:56 +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=23966</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[Crash on clicking field with combobox : Hello,I am going to close this...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23966&amp;PID=77858&amp;title=crash-on-clicking-field-with-combobox#77858</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9012">agontarenko</a><br /><strong>Subject:</strong> 23966<br /><strong>Posted:</strong> 22 September 2020 at 3:26am<br /><br />Hello,<br><br><div>I am going to close this issue for now since I have not heard back from you. Please let me know if we need to re-open this issue at a later date.</div><div>(0001213)</div><br>Regards,<br>Artem Gontarenko&nbsp; <br>]]>
   </description>
   <pubDate>Tue, 22 Sep 2020 03:26:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23966&amp;PID=77858&amp;title=crash-on-clicking-field-with-combobox#77858</guid>
  </item> 
  <item>
   <title><![CDATA[Crash on clicking field with combobox : Hello,Unfortunately it is not...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23966&amp;PID=77654&amp;title=crash-on-clicking-field-with-combobox#77654</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9012">agontarenko</a><br /><strong>Subject:</strong> 23966<br /><strong>Posted:</strong> 03 April 2020 at 8:06am<br /><br /><div>Hello,</div><div><br></div><div>Unfortunately it is not clear what exactly is going wrong. Can you please provide more detailed information. <br>If it cannot be re-produced in any of our sample applications provided <br>I would appreciate you sending a sample application so that we could debug it.<br></div><div><br></div><div>Regards,</div><div>Artem Gontarenko<br></div>]]>
   </description>
   <pubDate>Fri, 03 Apr 2020 08:06:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23966&amp;PID=77654&amp;title=crash-on-clicking-field-with-combobox#77654</guid>
  </item> 
  <item>
   <title><![CDATA[Crash on clicking field with combobox : Hi,I have a simple report control...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23966&amp;PID=77642&amp;title=crash-on-clicking-field-with-combobox#77642</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6141">ericchubb</a><br /><strong>Subject:</strong> 23966<br /><strong>Posted:</strong> 25 March 2020 at 4:07pm<br /><br />Hi,<div><br></div><div>I have a simple report control and i want a couple of the columns to use combo boxes.</div><div><br></div><div>I've initialised the column with the combobox as so:</div><div><br></div><div><div><div>pColumn-&gt;GetEditOptions()-&gt;AddConstraint(_T("SHOW"), 0);</div><div>&nbsp;pColumn-&gt;GetEditOptions()-&gt;AddConstraint(_T("HIDE"), 0);</div><div>pColumn-&gt;GetEditOptions()-&gt;m_bConstraintEdit = TRUE;</div><div>pColumn-&gt;GetEditOptions()-&gt;m_bAllowEdit = TRUE;</div><div>CXTPReportInplaceButton * pButton = pColumn-&gt;GetEditOptions()-&gt;AddComboButton();</div><div>pColumn-&gt;SetEditable(TRUE);</div><div>pColumn-&gt;SetAutoSize(TRUE);</div><div><br></div><div>When actually adding records, i do it like so:</div><div><br></div><div><div>CXTPReportRecordItem* pItem = AddItem(new CKeywordsSettingsListRecordItem(_T("")));</div><div><span style="white-space:pre">	</span>pItem-&gt;HasCheckbox(TRUE);</div><div><span style="white-space:pre">	</span>pItem-&gt;SetChecked(bEnabled);</div><div><span style="white-space:pre">	</span>AddItem(new CXTPReportRecordItemText); //this is the column with the combobox</div><div><span style="white-space:pre">	</span>AddItem(new CKeywordsSettingsListRecordItem(szExpression,false));</div><div><span style="white-space:pre">	</span>AddItem(new CKeywordsSettingsListRecordItem(szAttributeName,false));</div><div><span style="white-space:pre">	</span>AddItem(new CKeywordsSettingsListRecordItem(szAttributeValue,false));</div><div><span style="white-space:pre">	</span>AddItem(new CKeywordsSettingsListRecordItem(szID,false));</div><div><span style="white-space:pre">	</span>AddItem(new CKeywordsSettingsListRecordItem(szComment,false));</div><div><span style="white-space:pre">	</span>pItem = AddItem(new CKeywordsSettingsListRecordItem(szExt,true));</div></div><div><span style="white-space:pre">	</span>&nbsp;</div></div></div><div>However, when i go to click on the field with the combo box, it crashes</div><div><br></div><div><br></div><div>The crash seems to take place in CXTPReportPaintManager::DrawInplaceButton and there is a NULL pointer called&nbsp;m_pCombo</div><div><br></div><div>I've no idea what the problem could be. Any help would be much appreciated!</div><div><br></div><div>Thanks</div><div><br></div>]]>
   </description>
   <pubDate>Wed, 25 Mar 2020 16:07:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23966&amp;PID=77642&amp;title=crash-on-clicking-field-with-combobox#77642</guid>
  </item> 
 </channel>
</rss>