i have created record set object
set rs = .........
now i'am trying to find one record in the recordset
rs.movefirst
rs.find("field='value_to_search'",)
when i use rs.find i get errors like - cannot scrool backward, cannot use parentheses when calling sub.
what this errors are, and why described recordset method dont want to work., here is the fund method syntax from www tutorial
www.w3schools.com
objRecordset.Find(criteria,skiprows,direction,star t)
people why can't make find method on recordset object, what i'am doing wrong ?
thanks