The button and text box are on the sub form. The user types the number into the textbox.
I get an "object doesn't support this property or method" error.
Can any see where the error is?
CODE
With Forms!BarF.Form!ChitListSubF
'find the first record that matches crieteria
.RecordsetClone.FindFirst "[ChitNo] = '" & Me.Chittxt & "'"
'if a matching record was found, then move to it
If Not .RecordsetClone.NoMatch Then
.Bookmark = .RecordsetClone.Bookmark
End If
End With
'find the first record that matches crieteria
.RecordsetClone.FindFirst "[ChitNo] = '" & Me.Chittxt & "'"
'if a matching record was found, then move to it
If Not .RecordsetClone.NoMatch Then
.Bookmark = .RecordsetClone.Bookmark
End If
End With
Harry