Forms dating

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

Guest

I have a form setup for entry of a accounts payable voucher. The form is
created off of a table and seems to work fine in creating the records, along
with the find and duplicate command buttons I have created to decrease the
data entry.

So I am stuck on 2 things to finish this up. I need the voucher date field
to update with today's date, it will on a fresh entry but not if I utilize
the duplicate function.

Is there a way to accomplish this?
 
In the code of your duplicate function, set the value of the field to the
current date.

Me.ControlName = Date()

Steve
 
Back
Top