PDA

Click to See Complete Forum and Search --> : Tables using DAO


Caro
May 20th, 2000, 09:51 PM
When using a table type in my DAO I get No Current Record error when I try to AddNew and Update after a seek with Nomatch - any ideas?
Code is
If rsTable.NoMatch Then
rsTable.AddNew
etc.

pardede
May 21st, 2000, 01:43 PM
I think you should put a move method before the addnew:

If rsTable.NoMatch Then
rsTable.MoveLast
rsTable.AddNew
etc.