integritycare
Technical User
Hello,
Below is some code I found in the forums. Have tried to use it on a continous form so that only a single record can be selected at one time.
However I get an error saying that "data or member not found." It highlights (.Edit) as the error.
Any help would be appreciated.
Regards,
Integrity
Below is some code I found in the forums. Have tried to use it on a continous form so that only a single record can be selected at one time.
However I get an error saying that "data or member not found." It highlights (.Edit) as the error.
Code:
Dim rst As Recordset
Set rst = Me.RecordsetClone
With rst
.MoveFirst
Do While Not .EOF
.Edit
rst![CheckBoxFieldName] = False
.Update
.MoveNext
Loop
End With
rst.Close
Set rst = Nothing
Any help would be appreciated.
Regards,
Integrity