


I have figured out how to highlight a field when a check box is clicked on however, I cannot get it to remove the highlight when the check box is unclicked?
this is what I used for the highlight:
Subform1.fieldname.fillColor="255,255,0"
Views
Replies
Total Likes
It should be much the same ... if the code was in the click event of the check box and the off colour was white then;
if
(Subform1.fieldname.rawValue == 0)
Subform1.fieldname.fillColor
= "255,255,255"
else
Subform1.fieldname.fillColor
= "255,255,0"
Views
Replies
Total Likes
The if,else is not working for my form. The field remains highlighted whether the check box is checked or not. Could my issue be with the settings of the form?
Views
Replies
Total Likes
Put an message out before the if statement to validate that the value of TextField1 is what you think it is. It might be null.
Paul
Views
Replies
Total Likes