Hi,
I want to disable editing certain fields on a form if the date on this form (goes over a year) is smaller then now() + days
How do I write that ???
Now I have this, but I need those extra 7 days on top of the present datefield[txtDatumFix]
If Forms![Inschrijving].[txtDatumFix] < Now() Then
Me.AllowEdits = False
Me.AllowAdditions = False
End If
Thanks for helping out..
I want to disable editing certain fields on a form if the date on this form (goes over a year) is smaller then now() + days
How do I write that ???
Now I have this, but I need those extra 7 days on top of the present datefield[txtDatumFix]
If Forms![Inschrijving].[txtDatumFix] < Now() Then
Me.AllowEdits = False
Me.AllowAdditions = False
End If
Thanks for helping out..