W
Wayne
Hi
I have a report with several check boxes. I want the label
for the check box to change color if the box is ticked. I
am using the following code:
If Me.DDNoticeOfProgressComplete = True Then
Me.DDNoticeOfProgressComplete_Label.ForeColor = vbRed
Me.DDNoticeOfProgressComplete_Label.BackStyle = 1
Else
Me.DDNoticeOfProgressComplete_Label.ForeColor = vbWhite
Me.DDNoticeOfProgressComplete_Label.BackStyle = 0
End If
But it says "You entered an expression that has no value".
Can anyone help me with this little problem?
I have a report with several check boxes. I want the label
for the check box to change color if the box is ticked. I
am using the following code:
If Me.DDNoticeOfProgressComplete = True Then
Me.DDNoticeOfProgressComplete_Label.ForeColor = vbRed
Me.DDNoticeOfProgressComplete_Label.BackStyle = 1
Else
Me.DDNoticeOfProgressComplete_Label.ForeColor = vbWhite
Me.DDNoticeOfProgressComplete_Label.BackStyle = 0
End If
But it says "You entered an expression that has no value".
Can anyone help me with this little problem?