J
JamesJ
Can't seem to get this to work.
On a Split Form I set the Visible property of a label to No.
I need to check to see if a check box is checked (1) or not (0)
If is checked I want the label to be visible if not visible no.
The following code in the OnCurrent of the form doesn't seem to work:
If Me!DvdShortList.Value = 1 Then
Me!lblShortList.Visible = True
Else
Me!lblShortList.Visible = False
End If
Any help will be appreciated
James
On a Split Form I set the Visible property of a label to No.
I need to check to see if a check box is checked (1) or not (0)
If is checked I want the label to be visible if not visible no.
The following code in the OnCurrent of the form doesn't seem to work:
If Me!DvdShortList.Value = 1 Then
Me!lblShortList.Visible = True
Else
Me!lblShortList.Visible = False
End If
Any help will be appreciated
James