Brlee1crv
If you are going to display / not display a check box for records in a sing form, this is fairly easy.
Use the OnCurrent event procedure, and take advantage of the visible property. You need to test something, based on the current record to decide to toggle the visible property on or off.
If Me.YourTestValue Then
Me.YourCheckBox.Visible = True
Else
Me.YourCheckBox.Visible = False
End If
If you are going to use a contineus form, then the job gets much tougher. Unfortunately, a contineous form will toggle the visibility property for all check boxes on or foff.
A way around this that I have used with some success is to change the CheckBox to a Combo box that uses a value list of True and False, and then uses Conditional Format feature. For example, turn the back groun colour red if True, and green if False.
Richard