When using forms and advancing records...

T

Tangier

how do I keep the same information from the previous record when
advancing to a new record?

I want to do this to save time when doing data entry.
 
B

boblarson

In the form's BEFORE UPDATE event you can set the default to the current
values:

Me.YourControlName.DefaultValue = "'" & Me.YourControlName & "'"
--
Bob Larson
Access MVP
Free Tutorials and Samples at http://www.btabdevelopment.com

__________________________________
 

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