<?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 : &quot;Bug&quot; in CXTPReportInplaceEdit</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : &quot;Bug&quot; in CXTPReportInplaceEdit]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 30 May 2026 03:09:32 +0000</pubDate>
  <lastBuildDate>Thu, 12 May 2011 08:49:58 +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=4705</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[&quot;Bug&quot; in CXTPReportInplaceEdit : I am able to set the multiline...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4705&amp;PID=64351&amp;title=bug-in-cxtpreportinplaceedit#64351</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2796">Makarand</a><br /><strong>Subject:</strong> 4705<br /><strong>Posted:</strong> 12 May 2011 at 8:49am<br /><br /><div>I am able to set the multiline property by applying</div><div>pColumn-&gt;GetEditOptions()-&gt;m_dwEditStyle |= ES_MULTILINE | ES_AUTOVSCROLL;</div><div><br></div><div>but ES_AUTOVSCROLL is not setting. Please see attached screenshot.</div><div><br></div><div><img src="uploads/2796/MultiLineScrollNotSet.JPG" height="160" width="313" border="0" /><br></div><div>any other way to set it?</div><div><br></div><div>-Mak</div>]]>
   </description>
   <pubDate>Thu, 12 May 2011 08:49:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4705&amp;PID=64351&amp;title=bug-in-cxtpreportinplaceedit#64351</guid>
  </item> 
  <item>
   <title><![CDATA[&quot;Bug&quot; in CXTPReportInplaceEdit : Actually, it&amp;#039;s easier to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4705&amp;PID=14662&amp;title=bug-in-cxtpreportinplaceedit#14662</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2198">znakeeye</a><br /><strong>Subject:</strong> 4705<br /><strong>Posted:</strong> 03 August 2006 at 11:33pm<br /><br />Actually, it's easier to make a little hack. Here's a solution if anybody else encounters the same problem:<DIV>&nbsp;</DIV><DIV>BOOL CMyView::PreTranslateMessage(MSG* pMsg)<BR>{<BR>&nbsp;&nbsp;&nbsp; if (pMsg-&gt;message == WM_CHAR &amp;&amp; pMsg-&gt;wParam == VK_RETURN)<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (m_myReport.GetInplaceEdit()-&gt;IsWindowVisible())<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pMsg-&gt;wParam = 0x0A;&nbsp;&nbsp;&nbsp; // Ctrl+Enter. Voilą!<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; return CXTResizeFormView::PreTranslateMessage(pMsg);<BR>}</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 03 Aug 2006 23:33:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4705&amp;PID=14662&amp;title=bug-in-cxtpreportinplaceedit#14662</guid>
  </item> 
  <item>
   <title><![CDATA[&quot;Bug&quot; in CXTPReportInplaceEdit : Thanks for a suggestion, easier...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4705&amp;PID=14601&amp;title=bug-in-cxtpreportinplaceedit#14601</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4705<br /><strong>Posted:</strong> 03 August 2006 at 8:12am<br /><br />Thanks for a suggestion, easier is to compiler the whole source.<br><br>BTW, if you use a solution from a topic: <a href="http://forum.codejock.com/forum_posts.asp?TID=4700" target="_blank">http://forum.codejock.com/forum_posts.asp?TID=4700</a>, i.e. <br>pColumn-&gt;GetEditOptions()-&gt;m_dwEditStyle |= ES_MULTILINE | ES_AUTOVSCROLL; -- you can insert new line char with Ctrl+Enter<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Thu, 03 Aug 2006 08:12:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4705&amp;PID=14601&amp;title=bug-in-cxtpreportinplaceedit#14601</guid>
  </item> 
  <item>
   <title><![CDATA[&quot;Bug&quot; in CXTPReportInplaceEdit : If you have enabled multiline...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4705&amp;PID=14574&amp;title=bug-in-cxtpreportinplaceedit#14574</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2198">znakeeye</a><br /><strong>Subject:</strong> 4705<br /><strong>Posted:</strong> 02 August 2006 at 9:40pm<br /><br /><P>If you have enabled multiline support in a report control, you most certainly want the enter key to behave as "insert new line character" instead of cancelling the editing. See code below. Perhaps it would be a good idea to have a SetCancelOnReturn(BOOL bCancel)-method?</P><DIV>void CXTPReportInplaceEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)<BR>{<BR>&nbsp;&nbsp;&nbsp; if (!pControl)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;<BR>&nbsp;&nbsp;&nbsp; if (nChar == VK_TAB) return;<BR>&nbsp;&nbsp;&nbsp; // if (nChar == VK_ESCAPE || nChar == VK_RETURN)<BR>&nbsp;&nbsp;&nbsp; // FIX: Take "want return" style into account<BR>&nbsp;&nbsp;&nbsp; if (nChar == VK_ESCAPE || (nChar == VK_RETURN &amp;&amp; !(GetStyle() &amp; ES_WANTRETURN)))<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pControl-&gt;EditItem(NULL);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; ...<BR>}</DIV><DIV></DIV><DIV></DIV>If I want this change immediately, do I have to compile the whole source or can I somehow subclass this control? I cannot come up with a nice solution.<DIV>&nbsp;</DIV><DIV>Thanks!</DIV>]]>
   </description>
   <pubDate>Wed, 02 Aug 2006 21:40:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4705&amp;PID=14574&amp;title=bug-in-cxtpreportinplaceedit#14574</guid>
  </item> 
 </channel>
</rss>