Hello programmers,
On open I have a form activate this procedure:
Private Sub Form_Open(Cancel As Integer)
If Me!CommNumber = 1 Then
Me!Cleared.Enabled = False
Else
End If
End Sub
The problem I am having is that the all the rows which all have the field [cleared] (Yes/No) on the continous form are disabled if the condition of 1 is met. Is there a way to just disable the field [cleared] (Yes/No) that holds the condition in the row or rows ?
Thanks,
Felix
On open I have a form activate this procedure:
Private Sub Form_Open(Cancel As Integer)
If Me!CommNumber = 1 Then
Me!Cleared.Enabled = False
Else
End If
End Sub
The problem I am having is that the all the rows which all have the field [cleared] (Yes/No) on the continous form are disabled if the condition of 1 is met. Is there a way to just disable the field [cleared] (Yes/No) that holds the condition in the row or rows ?
Thanks,
Felix