View Full Version : Adding Dates


RJ
12-03-2000, 06:04 PM
Hi all
I'm having difficulty adding a set number of days to a date in a textbox in a form.
I want to add 15 days to a date that was entered earlier in the same form.
I have tried an unbound text box with a before_update command of DueDate = (SpillDate+14)

Any assistance appreciated.

Richard

Pat Hartman
12-03-2000, 06:13 PM
Use the AfterUpdate event of the field where the date is entered.

Me.UnboundFld = Me.BoundDateFld + 14