G
Guest
I have the following code in my text box to populate and store the date for 3
weeks out. However if the user needs to change the date manually it reverts
back to the code (populated date).
How or what do I need to be able to use it both ways? the populated date and
or the manuel date? Here is the code in the text box whcih populates it date
+ 3 weeks into another text box.
If IsDate(Me.LoanApplicationPackageReceiptDate) Then
Me.ZoningDue = DateAdd("ww", 3, LoanApplicationPackageReceiptDate)
End If
weeks out. However if the user needs to change the date manually it reverts
back to the code (populated date).
How or what do I need to be able to use it both ways? the populated date and
or the manuel date? Here is the code in the text box whcih populates it date
+ 3 weeks into another text box.
If IsDate(Me.LoanApplicationPackageReceiptDate) Then
Me.ZoningDue = DateAdd("ww", 3, LoanApplicationPackageReceiptDate)
End If