Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / Forms Programming / May 2007

Tip: Looking for answers? Try searching our database.

Moving Cursos - newbie question

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Victoria - 03 May 2007 02:17 GMT
I have a form where I enter numerical data into 4 columns.  Typically, there
are about 30 rows.  Because of the nature of the values, it is easier to
enter the data for each column from top to bottom before going to the next
column.  I currently enter a value then have to tab 4 times before I enter
the next value below the previous one.  

What's an easy way to do this?  How can I make the down arrow move the
cursor 'down' one row?

Thanks
Victoria
hmadyson - 03 May 2007 02:39 GMT
In your form, put the following code in the Keydown event of your form

Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
   Select Case KeyCode
       Case vbKeyDown
           DoCmd.GoToRecord
   End Select
End Sub

Please let me know if I can provide more assistance.

> I have a form where I enter numerical data into 4 columns.  Typically, there
> are about 30 rows.  Because of the nature of the values, it is easier to
[quoted text clipped - 7 lines]
> Thanks
> Victoria
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.