<?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 : FooterRecords, HeaderRecords and markup</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : FooterRecords, HeaderRecords and markup]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 12 Apr 2026 01:32:31 +0000</pubDate>
  <lastBuildDate>Sun, 01 Nov 2009 07:46:42 +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=15492</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[FooterRecords, HeaderRecords and markup : Source from release have always...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15492&amp;PID=54431&amp;title=footerrecords-headerrecords-and-markup#54431</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=66">zaksoft</a><br /><strong>Subject:</strong> 15492<br /><strong>Posted:</strong> 01 November 2009 at 7:46am<br /><br />Source from release have always the same date/time, yours (probably) real update time, from MFC source all <DIV>#define ACTIVEX</DIV><DIV>are removed, so it's difficult to understand witch files have been updated, I use Araxis Merge to compare folders, (since date cannot be used) but it's very difficult and can be error proning.</DIV><DIV>&nbsp;</DIV><DIV>Already scheduled 13.2.2 release ?</DIV><DIV>&nbsp;</DIV><DIV>TIA</DIV>]]>
   </description>
   <pubDate>Sun, 01 Nov 2009 07:46:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15492&amp;PID=54431&amp;title=footerrecords-headerrecords-and-markup#54431</guid>
  </item> 
  <item>
   <title><![CDATA[FooterRecords, HeaderRecords and markup : I tested it - it works and I updared...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15492&amp;PID=54352&amp;title=footerrecords-headerrecords-and-markup#54352</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 15492<br /><strong>Posted:</strong> 29 October 2009 at 10:10pm<br /><br />I tested it - it works and I updared SVN - so it will be in 13.2.2 but you can get fresh source update here now - <a href="https://forum.codejock.com/uploads/DemoVersi&#111;n/ReportC&#111;ntrolMFCUpdated.rar" target="_blank">https://forum.codejock.com/uploads/DemoVersion/ReportControlMFCUpdated.rar</A>]]>
   </description>
   <pubDate>Thu, 29 Oct 2009 22:10:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15492&amp;PID=54352&amp;title=footerrecords-headerrecords-and-markup#54352</guid>
  </item> 
  <item>
   <title><![CDATA[FooterRecords, HeaderRecords and markup : We can consider it but not in...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15492&amp;PID=54333&amp;title=footerrecords-headerrecords-and-markup#54333</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 15492<br /><strong>Posted:</strong> 29 October 2009 at 3:36pm<br /><br />We can consider it but not in 13.2.1 - later]]>
   </description>
   <pubDate>Thu, 29 Oct 2009 15:36:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15492&amp;PID=54333&amp;title=footerrecords-headerrecords-and-markup#54333</guid>
  </item> 
  <item>
   <title><![CDATA[FooterRecords, HeaderRecords and markup : Hi,  I noticed that HeaderRecords...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15492&amp;PID=54315&amp;title=footerrecords-headerrecords-and-markup#54315</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4454">crystyce</a><br /><strong>Subject:</strong> 15492<br /><strong>Posted:</strong> 29 October 2009 at 8:56am<br /><br />Hi,<br /><br />I noticed that HeaderRecords and FooterRecords (wich are very usefull) can't use Markup. That's because EnableMarkup creates a MarkupContext just for plain records.<br /><br />You can make this work by modifying CXTPReportControl::EnableMarkup like this:<br /><br />void CXTPReportControl::EnableMarkup(BOOL bEnable)<br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;BOOL bOldEnable = GetMarkupContext() != NULL;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (bOldEnable == bEnable)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;XTPMarkupReleaseContext(m_pRecords-&gt;m_pMarkupContext);<font color=red><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;XTPMarkupReleaseContext(m_pHeaderRecords-&gt;m_pMarkupContext);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;XTPMarkupReleaseContext(m_pFooterRecords-&gt;m_pMarkupContext);</font><br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (bEnable)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;m_pRecords-&gt;m_pMarkupContext = XTPMarkupCreateContext(m_hWnd);<font color=red<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;m_pHeaderRecords-&gt;m_pMarkupContext = XTPMarkupCreateContext(m_hWnd);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;m_pFooterRecords-&gt;m_pMarkupContext = XTPMarkupCreateContext(m_hWnd);</font><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />}<br /><br />My question is: will this fixes (including the one here: <a href="http://forum.codejock.com/forum_posts.asp?TID=15129" target="_blank">GroupRow, Hyperlink and markup</a>) ever be included in a release?<br /><br />Because now when you will make a release I have to make the changes all over again for every computer.]]>
   </description>
   <pubDate>Thu, 29 Oct 2009 08:56:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15492&amp;PID=54315&amp;title=footerrecords-headerrecords-and-markup#54315</guid>
  </item> 
 </channel>
</rss>