J
Jason
I currently use a checkbox that simply changes the view of
another item on the form: (AS Follows)
'Hides And Unhides the Attention bar at the top of the
Form window
Private Sub chkneed_Click()
If chkneed.Value = True Then
Me.attention.Visible = True
End If
If chkneed.Value = False Then
Me.attention.Visible = False
End If
End Sub
However, when i cycle through each record, sometimes the
you can see the box even though chkneed = False.
Hope i've explained it ok, can anyone help?
Thankyou in Advance
another item on the form: (AS Follows)
'Hides And Unhides the Attention bar at the top of the
Form window
Private Sub chkneed_Click()
If chkneed.Value = True Then
Me.attention.Visible = True
End If
If chkneed.Value = False Then
Me.attention.Visible = False
End If
End Sub
However, when i cycle through each record, sometimes the
you can see the box even though chkneed = False.
Hope i've explained it ok, can anyone help?
Thankyou in Advance