<?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 : Is it possible to tab between cells?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Is it possible to tab between cells?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 16 May 2026 02:08:54 +0000</pubDate>
  <lastBuildDate>Mon, 04 Dec 2006 05:07:11 +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=5636</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[Is it possible to tab between cells? : Just as a followup.... I was using...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5636&amp;PID=17883&amp;title=is-it-possible-to-tab-between-cells#17883</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1989">RobinG</a><br /><strong>Subject:</strong> 5636<br /><strong>Posted:</strong> 04 December 2006 at 5:07am<br /><br />Just as a followup.... I was using 9.81 which did not have the KeyDownPreview event, so i finally I made the&nbsp;switch to 10.3.1<DIV></DIV><DIV></DIV><DIV></DIV><DIV></DIV><DIV>&nbsp;</DIV><DIV>Once using 10.3.1, I found that pressing the&nbsp;tab key never caused the event to fire - the report control just lost focus when it was&nbsp;pressed.</DIV><DIV>&nbsp;</DIV><DIV>I managed to get the event to fire for&nbsp;TAB by setting the&nbsp;"TabStop" property&nbsp;for the other controls on my form to false (I only had 2 so no problem there!) - now I can detect the tab key and move to the next cell.</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 04 Dec 2006 05:07:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5636&amp;PID=17883&amp;title=is-it-possible-to-tab-between-cells#17883</guid>
  </item> 
  <item>
   <title><![CDATA[Is it possible to tab between cells? : Serge,  Thanks for the tip! ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5636&amp;PID=17858&amp;title=is-it-possible-to-tab-between-cells#17858</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1989">RobinG</a><br /><strong>Subject:</strong> 5636<br /><strong>Posted:</strong> 02 December 2006 at 11:16am<br /><br />Serge,<DIV>&nbsp;</DIV><DIV>Thanks for the tip! <img src="https://forum.codejock.com/smileys/smiley4.gif" border="0"></DIV>]]>
   </description>
   <pubDate>Sat, 02 Dec 2006 11:16:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5636&amp;PID=17858&amp;title=is-it-possible-to-tab-between-cells#17858</guid>
  </item> 
  <item>
   <title><![CDATA[Is it possible to tab between cells? : Something like: Private Sub w...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5636&amp;PID=17852&amp;title=is-it-possible-to-tab-between-cells#17852</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 5636<br /><strong>Posted:</strong> 01 December 2006 at 5:21pm<br /><br />Something like:<br><table width="99%"><tr><td><pre class="BBcode"><br>Private Sub wndReportControl_PreviewKeyDown(KeyCode As Integer, ByVal Shift As Integer, Cancel As Boolean)<br>&nbsp;&nbsp;&nbsp; If KeyCode = vbKeyTab Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wndReportControl.Navigator.MoveRight<br>&nbsp;&nbsp;&nbsp; End If<br>End Sub<br></pre></td></tr></table><br>should help...<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Fri, 01 Dec 2006 17:21:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5636&amp;PID=17852&amp;title=is-it-possible-to-tab-between-cells#17852</guid>
  </item> 
  <item>
   <title><![CDATA[Is it possible to tab between cells? : I have a reportcontrol which I&amp;#039;m...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5636&amp;PID=17760&amp;title=is-it-possible-to-tab-between-cells#17760</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1989">RobinG</a><br /><strong>Subject:</strong> 5636<br /><strong>Posted:</strong> 29 November 2006 at 9:03am<br /><br />I have a reportcontrol which I'm using as an editable grid - Is it possible to use the tab key to advance onto the next "cell"?<DIV>&nbsp;</DIV><DIV>Prior to the edit begining it&nbsp;is&nbsp;possible to intercept key strokes via KeyDown() events, but once the edit begins I cant seem to find a way of getting notifications...</DIV><DIV>&nbsp;</DIV><DIV>Any ideas?</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 29 Nov 2006 09:03:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5636&amp;PID=17760&amp;title=is-it-possible-to-tab-between-cells#17760</guid>
  </item> 
 </channel>
</rss>