G
Guest
I am working on a form which displays records on continuous forms view, and I
want a check box to become visible on each record only if another field in
the form meets a certain criteria. I just can't get it to work correctly.
What I'm trying to do is that if the field named Keep = 0, then the CheckBox1
will be visible, but if Keep = -1, then CheckBox1 will not be visible.
The code I have now is:
If Me.Keep = -1 Then
Me.CheckBox1.Visible = False
End If
But what happens is that the checkbox is never visible
Any suggestions on how to do this?
want a check box to become visible on each record only if another field in
the form meets a certain criteria. I just can't get it to work correctly.
What I'm trying to do is that if the field named Keep = 0, then the CheckBox1
will be visible, but if Keep = -1, then CheckBox1 will not be visible.
The code I have now is:
If Me.Keep = -1 Then
Me.CheckBox1.Visible = False
End If
But what happens is that the checkbox is never visible
Any suggestions on how to do this?