dim rsSearch as recordset
if len(me.txtSearch) > 0 then
set rsSearch = me.recordsetclone
with rsSearch
.FindFirst "[Product Code] = '" & me.txtSearch & "'"
If .NoMatch then
msgBox "No Record Found"
else
me.bookmark = .bookmark
end if
end with
me.txtSearch = Null