Hi all
Could you please correct my code below. On a form I have a checkbox 'Reconc' and its Label 'Label59' all I want is when checked it should show in black otherwise red.I'm using WNT and Access 97
Private Sub Form_Load()
If Reconc.Value <> Checked Then
Label59.ForeColor = vbRed
Else
Label59.ForeColor = vbBlack
End If
End Sub
Thankyou



