The saga continues.

I only get to work on this on the weekends.
I am now using Access 97. The Program is progressing nicely. But I am still having issues with updating the quantities.
I am using the this code:
dim db as database
dim rs as recordset
set db = currentdb
set rs = db.openrecordset("INVENTORY", dbOpenDynaset)
rs.findfirst "[ID] = " & ME![InvItemNumb]
If Not rs.NoMatch then
rs.edit
rs("Quantity"
= rs("Quantity"
+ me![QtnRecieved]
rs("Quantity"

= rs("Quantity"

- me![QtnIssued]
rs.update
else
MsgBox "No match on Inventory Item Number."
me![InvItemNumb].setfocus
end if
rs.close
db.close
The problem line now is:
rs.findfirst "[
tblInventoryID] = " & ME![
tblIssueInvItemNumb]
I get a Method or Data Member Not Found error.
As I am typing in the code and get to the rs.FIndFirst and rs.NoMatch, the Findfirst and NoMatch does not come up in the autolist. Being somewhat new to Access, I'm not sure what this means.
Thanks again for your help.......Jerry