Hi,
I want to block editing certain fields after a date (+ 7 days)
This date exist on the form in the txtDatumFix field
Now I have this:
I want 7 days on top of the existing date (dd-mm-yyyy) then the block should start..
Anybody knows how to do this ???
Thanks for helping out..
I want to block editing certain fields after a date (+ 7 days)
This date exist on the form in the txtDatumFix field
Now I have this:
Code:
If Forms![Inschrijving].[txtDatumFix] < Now() Then
Me.AllowEdits = False
Me.AllowAdditions = False
End If
I want 7 days on top of the existing date (dd-mm-yyyy) then the block should start..
Anybody knows how to do this ???
Thanks for helping out..