Forms and advancing records...

R

Rob_D

how do I provide the option of keeping the same information from the previous
record when advancing to a new record?

a similar question was asked previously but I would like the carrying of
information to the new record as an option and NOT a constant.

please help
 
N

NetworkTrade

Private Sub controlname_AfterUpdate()
Me.controlname.DefaultValue = Chr(34) & Me.controlname & Chr(34)
End Sub

Thus if the user enters XYZ it will set the DefaultValue property to
"XYZ"
which will be used for the next entry.

and to make it optional then you will want to wrap it in an If/then
statement or checkbox value or whatever value that makes the decision to
carry forward the value....
 

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