Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old January 1st, 2006, 06:25 AM
AA Arens
Guest
 
Posts: n/a
Default How to get cursor focussed on field field after new record?

I want the cursor focuses on the first field when starting a new
record. Now I have to use my mouse. How to solve it?

Bart
Access 2003

  #2  
Old January 1st, 2006, 07:45 AM
darkroomdevil via AccessMonster.com
Guest
 
Posts: n/a
Default Re: How to get cursor focussed on field field after new record?

AA Arens wrote:[color=blue]
>I want the cursor focuses on the first field when starting a new
>record. Now I have to use my mouse. How to solve it?
>
>Bart
>Access 2003[/color]

In the design view of the form look at the menu:

View>Tab Order

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200601/1
  #3  
Old January 1st, 2006, 11:45 AM
Allen Browne
Guest
 
Posts: n/a
Default Re: How to get cursor focussed on field field after new record?

If you want the cursor in the control named InvoiceDate whenever you move to
a new record, add this to the Current event procedure of the form:

Private Sub Form_Current()
If Me.NewRecord Then
Me.[InvoiceDate].SetFocus
End If
End Sub

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"AA Arens" <bartvandongen@gmail.com> wrote in message
news:1136096268.289114.220690@g43g2000cwa.googlegr oups.com...[color=blue]
>I want the cursor focuses on the first field when starting a new
> record. Now I have to use my mouse. How to solve it?
>
> Bart
> Access 2003[/color]


 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles