adding record

B

baz

Hi,
Is there any way I can get the cursor to appear in a
specfic field in the form automatically after selecting
add record. At the moment the user selects add record
and then has to select the first field to input data.

regards baz
 
R

Rick Brandt

baz said:
Hi,
Is there any way I can get the cursor to appear in a
specfic field in the form automatically after selecting
add record. At the moment the user selects add record
and then has to select the first field to input data.

In the Form's Current event ...

'To do it all the time
Me!SomeControlName.SetFocus

'To do it only on new records
If Me.NewRecord Then Me!SomeControlName.SetFocus
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top