DoCmd.OpenTable

D

Daniel

I would like to open a table and have the user add a new
entry using the DoCmd.OpenTable "tLang", ,acEdit.
However, I want the cursor to be in the first field of a
new record. Is that possible? Just to make it easier for
the user.

Thanks

Dan
 
K

Ken Snell

Do not open the table for the user to enter data! Use a form that is bound
to the table and open the form. You then can control the cursor location,
the validity of what is being entered, etc.

Never ever allow a user to enter/edit/see data directly in a table.
 

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