<?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 : Issue with editing CXTPReportColumn text</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Issue with editing CXTPReportColumn text]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 07 Jun 2026 20:49:16 +0000</pubDate>
  <lastBuildDate>Tue, 31 May 2022 22:15:20 +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=24275</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[Issue with editing CXTPReportColumn text : hiI met this problem too on theXtreme...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24275&amp;PID=78442&amp;title=issue-with-editing-cxtpreportcolumn-text#78442</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9557">kgi_Jony</a><br /><strong>Subject:</strong> 24275<br /><strong>Posted:</strong> 31 May 2022 at 10:15pm<br /><br />hi<div><br></div><div>I met this problem too on the&nbsp;Xtreme ToolkitPro v20.0.0.</div><div><br></div><div>But I can't found the member function: <font face="Courier New, Courier, mono"><span style="white-space: pre; : rgb248, 248, 252;">SetMask() in class </span><span style="white-space: pre;">CXTPReportColumn.</span></font></div><div><font face="Courier New, Courier, mono"><span style="white-space: pre;">Could you have more detail or sample code for me?</span></font></div><div><font face="Courier New, Courier, mono"><span style="white-space: pre;"><br></span></font></div><div><span style="white-space: pre; font-family: &quot;Courier New&quot;, Courier, mono;">Thank you</span></div>]]>
   </description>
   <pubDate>Tue, 31 May 2022 22:15:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24275&amp;PID=78442&amp;title=issue-with-editing-cxtpreportcolumn-text#78442</guid>
  </item> 
  <item>
   <title><![CDATA[Issue with editing CXTPReportColumn text : I reported this issue earlier...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24275&amp;PID=78412&amp;title=issue-with-editing-cxtpreportcolumn-text#78412</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1263">Fredrik</a><br /><strong>Subject:</strong> 24275<br /><strong>Posted:</strong> 20 March 2022 at 11:23am<br /><br />I reported this issue earlier and I believe it is already fixed for the next release. The workaround I have at the moment is to loop over all columns and call SetMask to initialize members that weren't initialized.<br><br><table width="99%"><tr><td><pre class="BBcode"><br><div>&nbsp; &nbsp;for (int iColumn = 0; iColumn &lt; GetColumns()-&gt;GetCount(); ++iColumn)</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; GetColumns()-&gt;Find(iColumn)-&gt;SetMask(L"", L"", '\0');</div><div>&nbsp; &nbsp;}</div><div></pre></td></tr></table><br><br>Or add the hotfix in the XTP code:<br><br><table width="99%"><tr><td><pre class="BBcode"><br><div>void CXTPReportColumn::_initData(int nItemIndex, LPCTSTR strDisplayName, LPCTSTR strInternalName,</div><div>int nWidth, BOOL bAutoSize, int nIconID, BOOL bSortable,</div><div>BOOL bVisible)</div><div>{</div><div>...</div><div>m_chPrompt = _T('\0');</div><div>m_bUseMask = FALSE;</div><div>...<br><br></pre></td></tr></table></div></div>]]>
   </description>
   <pubDate>Sun, 20 Mar 2022 11:23:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24275&amp;PID=78412&amp;title=issue-with-editing-cxtpreportcolumn-text#78412</guid>
  </item> 
  <item>
   <title><![CDATA[Issue with editing CXTPReportColumn text : We have recently integrated our...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24275&amp;PID=78409&amp;title=issue-with-editing-cxtpreportcolumn-text#78409</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9547">vara2604</a><br /><strong>Subject:</strong> 24275<br /><strong>Posted:</strong> 17 March 2022 at 4:59am<br /><br />We have recently integrated our codebase with&nbsp;Xtreme ToolkitPro v20.2.0 version and found the breakage issue with editing text in&nbsp;<b>CXTPReportColumn</b>.<br><br>Issue can be easily reproducible with the ReportControl samples shipped with "Xtreme ToolkitPro v20.2.0" installation.<br><br><ol><li>Build below sample using 'Unicode Debug' or 'Unicode Release' configurations and launch the sample.&nbsp;<br><br>C:\Program Files (x86)\Codejock Software\MFC\Xtreme ToolkitPro v20.2.0\Samples\ReportControl\ReportAddRecordEx\ReportAddRecordEx_vc140.vcxproj<br><br><br></li><li>Type some text in edit controls and try to edit the text now. Text disappears and shows the blank value.&nbsp;</li></ol><div><b>Note that this issue is not reproducible with the older version C:\Program Files (x86)\Codejock Software\MFC\Xtreme ToolkitPro v18.4.0.</b><br><br>We use CXTPReportColumn control multiple places and issue is seen in this all places. Could you please fix this ASAP?</div>]]>
   </description>
   <pubDate>Thu, 17 Mar 2022 04:59:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24275&amp;PID=78409&amp;title=issue-with-editing-cxtpreportcolumn-text#78409</guid>
  </item> 
 </channel>
</rss>