M
meyerryang
I can't figure out why I keep getting a 3251 error. I am looking for a
specific record where I would like to change the note, but it won't let me go
to the record in "My Controls" table where the [Task] field is equal to 2.
It is numerical and all other references on other forms work just fine
(Dlookups, etc). Please help.
Dim rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset("My Controls")
rs.FindFirst "[Task] = 2"
rs.Edit
rs!Note = NewQuery
rs.Update
rs.Close: Set rs = Nothing
specific record where I would like to change the note, but it won't let me go
to the record in "My Controls" table where the [Task] field is equal to 2.
It is numerical and all other references on other forms work just fine
(Dlookups, etc). Please help.
Dim rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset("My Controls")
rs.FindFirst "[Task] = 2"
rs.Edit
rs!Note = NewQuery
rs.Update
rs.Close: Set rs = Nothing