I am currently working on a "Training Database" in Access 2000. The database holds 150 "Employees" and the training that they are required to complete and the dates the training expires. What I would like to do is: All training that is prior to today's date would flag in some fashion, i.e. the font changes color or the background changes color for that specific record.
I have tried two things, the first for the "review" record is:
If review < date then
review.backcolor = 255
else
review.backcolor = 16777215
End if
I also tried to create a checkbox that is triggered by the review column.
If review < date then
revout = true
else
revout = false
end if
If revout = true then
label73.backcolor = 255
End if
If revout = false then
label73.backcolor = 16777215
End if
The problem with this is that every record changes to the red or white color. I apologize for being so long winded, but this should be simple and I am completely stumped at how to specify this. The Checkbox system works if you use text and put in ;"inserttexthere" in the format section, but this doesn't really work for this database.
Thanks in advance for your help.
I have tried two things, the first for the "review" record is:
If review < date then
review.backcolor = 255
else
review.backcolor = 16777215
End if
I also tried to create a checkbox that is triggered by the review column.
If review < date then
revout = true
else
revout = false
end if
If revout = true then
label73.backcolor = 255
End if
If revout = false then
label73.backcolor = 16777215
End if
The problem with this is that every record changes to the red or white color. I apologize for being so long winded, but this should be simple and I am completely stumped at how to specify this. The Checkbox system works if you use text and put in ;"inserttexthere" in the format section, but this doesn't really work for this database.
Thanks in advance for your help.