K
Kelvin
I have a button with an on click event like this:
If Me.Comments = "" Then
Me.LockedRecord = False
Else
Me.LockedRecord = True
End If
But it's not doing what I want.
I want the button to set the value of the check box named "LockedRecord" to
be set to false if there is no data in the "Comments" field and true if the
"Comments" field has data.
What is the proper syntax for it to recognize that the Commnet field is
blank?
Thanks
Kelvin
If Me.Comments = "" Then
Me.LockedRecord = False
Else
Me.LockedRecord = True
End If
But it's not doing what I want.
I want the button to set the value of the check box named "LockedRecord" to
be set to false if there is no data in the "Comments" field and true if the
"Comments" field has data.
What is the proper syntax for it to recognize that the Commnet field is
blank?
Thanks
Kelvin