Entry Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form used for entry, but many of the fields will have the same data
in the next few records. Is there a way to carry data over to the next
record, but then be cleared next time the form is opened.
 
One way would be to use the AfterUpdate event for each of the repetitive
controls to set their default values, and then use the form's load event to
remove the default values and start fresh. Or you could use the form's after
update to set the default value instead of within each individual control.

Brian
 
Back
Top