is it possible to move to a empty record in a
database when a form first loads up, i tried data1.recordset.movenext but that does
not work can any one help at all.
Printable View
is it possible to move to a empty record in a
database when a form first loads up, i tried data1.recordset.movenext but that does
not work can any one help at all.
I believe what you are trying to do is to is to create a new record on form load. You would do that in ADO with the following syntax:
rsRecordSet.AddNew
This will bring up a new, blank record in your declared recordset for you to play with and update.