<?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 : Enter Key doesn&#039;t seem to be working...</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Enter Key doesn&#039;t seem to be working...]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 14 May 2026 14:08:27 +0000</pubDate>
  <lastBuildDate>Thu, 23 Aug 2012 16:29:26 +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=16462</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[Enter Key doesn&#039;t seem to be working... : Works perfectly. Thank youXander75!Tom...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=68821&amp;title=enter-key-doesnt-seem-to-be-working#68821</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7607">tompat</a><br /><strong>Subject:</strong> 16462<br /><strong>Posted:</strong> 23 August 2012 at 4:29pm<br /><br />Works perfectly. Thank you&nbsp;Xander75!<div><br></div><div>Tom</div>]]>
   </description>
   <pubDate>Thu, 23 Aug 2012 16:29:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=68821&amp;title=enter-key-doesnt-seem-to-be-working#68821</guid>
  </item> 
  <item>
   <title><![CDATA[Enter Key doesn&#039;t seem to be working... : Hello, any response to this long...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=68809&amp;title=enter-key-doesnt-seem-to-be-working#68809</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7607">tompat</a><br /><strong>Subject:</strong> 16462<br /><strong>Posted:</strong> 21 August 2012 at 6:57pm<br /><br />Hello, any response to this long standing issue?<br /><br />Many thanks,<br /><br />Tom]]>
   </description>
   <pubDate>Tue, 21 Aug 2012 18:57:43 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=68809&amp;title=enter-key-doesnt-seem-to-be-working#68809</guid>
  </item> 
  <item>
   <title><![CDATA[Enter Key doesn&#039;t seem to be working... :    tompat wrote:Hello,This still...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=68801&amp;title=enter-key-doesnt-seem-to-be-working#68801</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 16462<br /><strong>Posted:</strong> 21 August 2012 at 5:38am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by tompat" alt="Originally posted by tompat" style="vertical-align: text-bottom;" /> <strong>tompat wrote:</strong><br /><br />Hello,<div><br></div><div>This still appears to be an issue when using Report Control with MS Access. I am using version 15.3.1 with Access 2010.&nbsp;</div><div><br></div><div>When AllowEdit = True is set, neither the Enter key or Up/Down arrows work.</div><div><br></div><div>This is a serious concern as it renders the control unusable for my users.&nbsp;</div><div><br></div><div>Please could you let me know if there is a fix/workaround?</div><div><br></div><div>Many thanks,</div><div><br></div><div>Tom</div></td></tr></table><br><br>Strange, I have v15.3.1 installed and this works fine. I can get the Enter key and Arrow keys to fire in the PreviewKeyDown event when in editmode for the ReportControl.<br><br><table width="99%"><tr><td><pre class="BBcode">Private Sub ReportControl_PreviewKeyDown(KeyCode As Integer, ByVal Shift As Integer, Cancel As Boolean)<br>&nbsp;&nbsp;&nbsp; Select Case KeyCode<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case 13<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Your code on Enter goes here...<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case vbKeyDown<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReportControl.Navigator.MoveDown True, True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReportControl.Navigator.BeginEdit<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cancel = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case vbKeyLeft<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReportControl.Navigator.MoveLeft True, True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReportControl.Navigator.BeginEdit<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cancel = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case vbKeyRight<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReportControl.Navigator.MoveRight True, True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReportControl.Navigator.BeginEdit<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cancel = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case vbKeyUp<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReportControl.Navigator.MoveUp True, True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReportControl.Navigator.BeginEdit<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cancel = True<br>&nbsp;&nbsp;&nbsp; End Select<br>End Sub<br></pre></td></tr></table><br>]]>
   </description>
   <pubDate>Tue, 21 Aug 2012 05:38:07 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=68801&amp;title=enter-key-doesnt-seem-to-be-working#68801</guid>
  </item> 
  <item>
   <title><![CDATA[Enter Key doesn&#039;t seem to be working... : Hello,This still appears to be...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=68775&amp;title=enter-key-doesnt-seem-to-be-working#68775</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7607">tompat</a><br /><strong>Subject:</strong> 16462<br /><strong>Posted:</strong> 19 August 2012 at 3:20pm<br /><br />Hello,<div><br></div><div>This still appears to be an issue when using Report Control with MS Access. I am using version 15.3.1 with Access 2010.&nbsp;</div><div><br></div><div>When AllowEdit = True is set, neither the Enter key or Up/Down arrows work.</div><div><br></div><div>This is a serious concern as it renders the control unusable for my users.&nbsp;</div><div><br></div><div>Please could you let me know if there is a fix/workaround?</div><div><br></div><div>Many thanks,</div><div><br></div><div>Tom</div>]]>
   </description>
   <pubDate>Sun, 19 Aug 2012 15:20:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=68775&amp;title=enter-key-doesnt-seem-to-be-working#68775</guid>
  </item> 
  <item>
   <title><![CDATA[Enter Key doesn&#039;t seem to be working... : Thanks for your efforts.  For...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57720&amp;title=enter-key-doesnt-seem-to-be-working#57720</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5983">cspano</a><br /><strong>Subject:</strong> 16462<br /><strong>Posted:</strong> 22 March 2010 at 2:42pm<br /><br />Thanks for your efforts.  For the second issue, I've found a workaround regarding the null values in the 3rd column (basically, I don't assign a Null value, instead I convert nulls to zero-length strings).<br /><br />The bigger issue is the Enter Key behavior. That is a major inconvenience for my end user who expects normal behavior during data entry situations.  I eagerly await for a solution...]]>
   </description>
   <pubDate>Mon, 22 Mar 2010 14:42:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57720&amp;title=enter-key-doesnt-seem-to-be-working#57720</guid>
  </item> 
  <item>
   <title><![CDATA[Enter Key doesn&#039;t seem to be working... : Hi,  I didn&amp;#039;t know you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57691&amp;title=enter-key-doesnt-seem-to-be-working#57691</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 16462<br /><strong>Posted:</strong> 20 March 2010 at 6:35am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>I didn't know you used RC in Access database... I tried with your sample and you are right about the ENTER key. It doesn't do anything when pressing ENTER key and also NO event is fired.&nbsp;The other thing you mentioned I can't reproduce, the value <strong>changes</strong> when using TAB key or selecting other cell.</DIV><DIV>&nbsp;</DIV><DIV>I will add problem to my list and wait for response of support</DIV><DIV>&nbsp;</DIV><DIV>Thanks</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Sat, 20 Mar 2010 06:35:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57691&amp;title=enter-key-doesnt-seem-to-be-working#57691</guid>
  </item> 
  <item>
   <title><![CDATA[Enter Key doesn&#039;t seem to be working... : OK here&amp;#039;s a small MDB file...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57680&amp;title=enter-key-doesnt-seem-to-be-working#57680</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5983">cspano</a><br /><strong>Subject:</strong> 16462<br /><strong>Posted:</strong> 19 March 2010 at 1:44pm<br /><br />OK here's a small MDB file which demonstrates the problem(s) effectively.<br /><br />There's just one form, 'Test Form'. Column #2 and column #3 are both editable (via double click). Assuming that you experience the same results that I do, you will see that the Enter key has no effect when editing a cell.<br /><br />Also notice that any changes that are made in the 3rd column are not accepted (they revert back to the original value when the user leaves the cell or presses Tab). I'm not sure if this problem is related.<br /><br /><a href="uploads/20100319_134426_CodeJockTest.zip" target="_blank">20100319_134426_CodeJockTest.zip</a>]]>
   </description>
   <pubDate>Fri, 19 Mar 2010 13:44:43 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57680&amp;title=enter-key-doesnt-seem-to-be-working#57680</guid>
  </item> 
  <item>
   <title><![CDATA[Enter Key doesn&#039;t seem to be working... : Unfortunately, I&amp;#039;m using...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57676&amp;title=enter-key-doesnt-seem-to-be-working#57676</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5983">cspano</a><br /><strong>Subject:</strong> 16462<br /><strong>Posted:</strong> 19 March 2010 at 1:00pm<br /><br />Unfortunately, I'm using the Report Control on a MSAccess (2003) Form, which is connected to a MSSQLServer 2005 database on a network. I will attempt to extract all the relevant code and objects into a stand-alone MDB file to allow you to reproduce the error...]]>
   </description>
   <pubDate>Fri, 19 Mar 2010 13:00:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57676&amp;title=enter-key-doesnt-seem-to-be-working#57676</guid>
  </item> 
  <item>
   <title><![CDATA[Enter Key doesn&#039;t seem to be working... : Hi,  I can&amp;#039;t reproduce...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57674&amp;title=enter-key-doesnt-seem-to-be-working#57674</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 16462<br /><strong>Posted:</strong> 19 March 2010 at 12:04pm<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>I can't reproduce what you mentioned, I'm able to use ENTER key and caption does change.</DIV><DIV>Can you upload test project ?</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 19 Mar 2010 12:04:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57674&amp;title=enter-key-doesnt-seem-to-be-working#57674</guid>
  </item> 
  <item>
   <title><![CDATA[Enter Key doesn&#039;t seem to be working... : Using version ReportControl 13.3.1,  When...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57642&amp;title=enter-key-doesnt-seem-to-be-working#57642</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5983">cspano</a><br /><strong>Subject:</strong> 16462<br /><strong>Posted:</strong> 16 March 2010 at 8:02pm<br /><br />Using version ReportControl 13.3.1,<br /><br />When editing the contents of a cell, the Enter Key doesn't appear to have any effect (and I can't trap the KeyDown event).  This prevents the user from hitting 'Enter' if after they've typed in the desirable cell contents (in order to indicate they they've finished entering data in that cell).<br /><br />All settings are default except as follows:<br />Set rc = Me.ReportControl1.Object<br />&nbsp;&nbsp;&nbsp;&nbsp;rc.PaintManager.FixedRowHeight = False ' allows for multi-line headers<br />&nbsp;&nbsp;&nbsp;&nbsp;rc.BorderStyle = xtpBorderFrame<br />&nbsp;&nbsp;&nbsp;&nbsp;rc.AllowEdit = True<br /><br />columns have following settings:<br />&nbsp;&nbsp;&nbsp;&nbsp;Column.EditOptions.SelectTextOnEdit = True]]>
   </description>
   <pubDate>Tue, 16 Mar 2010 20:02:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16462&amp;PID=57642&amp;title=enter-key-doesnt-seem-to-be-working#57642</guid>
  </item> 
 </channel>
</rss>