
HELP! simple question need simple answer
Hi!
If you want add a new record, move to the last record first, so it will
be appended to your recordset.
Data1.Recordset.MoveLast
Data1.Recordset.AddNew
Data1.Recordset.Update
Data1.Recordset.MoveLast
First you move to the last record, then you add a new one, then you save
it, and then you move to it again.
If you want to delete a record, then first move to the one you want to
delete, then use:
Data1.Recordset.Delete