No save after 1 year

B

Bob Vance

Some where in my code I have some code behind my form that wont let you edit
any data once its over 1 year old,
Can someone give me some indication what would be written in the code so I
can find it!
 
B

Bob Vance

Oops found it :)

Else
nTotalDays = 365
End If

If dtDiff > nTotalDays Then
cmdClose.SetFocus
subLockControls False, True
bLockFlag = True
Else
subLockControls True, False
 
Top