greysquirl
Programmer
I am going to try and explain this the besy way I know how. . . . .
I have a form called Review. At the moment I have a bit of code running in the form (see below) which on January 1 of every year will clear out (4) text boxes and (3) check boxes. What I need to happen here is on January 1 of every year I need to add a year to TextAnnual. To make more sense of this let me explain. The form is to represent employee review dates starting at 3 months, 6 months and every year consecutively. The check boxes are to be checked as the reviews are done respectively. Every year on Jan 1 I need the form to add a year to TextAnnual and clear out the check boxes so that in my report it should show the employees who have reached their review dates.
Private Sub Form_Current()
If (Month(Date) = 1) And (Day(Date) = 1) Then
Me!TextPosStart = ""
Me!Text3Month = ""
Me!Text6Month = ""
Me!TextAnnual = ""
Me!Check1 = False
Me!Check2 = False
Me!Check3 = False
End If
End Sub
I hope I haven't confused anyone. If you can understand this please help. . . .
Thank you in advance for any help you can provide me with.
I have a form called Review. At the moment I have a bit of code running in the form (see below) which on January 1 of every year will clear out (4) text boxes and (3) check boxes. What I need to happen here is on January 1 of every year I need to add a year to TextAnnual. To make more sense of this let me explain. The form is to represent employee review dates starting at 3 months, 6 months and every year consecutively. The check boxes are to be checked as the reviews are done respectively. Every year on Jan 1 I need the form to add a year to TextAnnual and clear out the check boxes so that in my report it should show the employees who have reached their review dates.
Private Sub Form_Current()
If (Month(Date) = 1) And (Day(Date) = 1) Then
Me!TextPosStart = ""
Me!Text3Month = ""
Me!Text6Month = ""
Me!TextAnnual = ""
Me!Check1 = False
Me!Check2 = False
Me!Check3 = False
End If
End Sub
I hope I haven't confused anyone. If you can understand this please help. . . .
Thank you in advance for any help you can provide me with.