I have discovered a strange bug in one of my applications.
The user is supposed to do some jobs, for which he has a deadline,
which is the 7th of every month. After that day, he shouldn't be able
to perform some actions. The code is:
If Day(Now()) > "7" then
If Month(thefields3(2)) < Month(Now()) then
...
|
Well, everything worked fine, until this month, when it no longer
works, because january it is not interpreted as following december... I
have checked, and for february it works. So, it's only about 7th of
january... Am I making any sense here? Does anybody have a clue for
this?