PDA

Click to See Complete Forum and Search --> : Simply DB Questions


Dayo312
Jan 9th, 2000, 01:27 AM
I would Like to know how to do a few things in DB's.

How do you tell the Data contoll to make a new record?

How could I tell the data contoll to save the changed data of the fields with a command button?

Thankyou!!

Jan 9th, 2000, 01:34 AM
data1.recordset.addnew 'to make a new record

data1.recordset.movenext 'i think this should save the record

Dayo312
Jan 9th, 2000, 01:38 AM
Thankyou alot, But what if there is no next record??

Clunietp
Jan 9th, 2000, 02:14 AM
If there is no next record, the EOF property will be TRUE. You can control this by setting the BOFAction, EOFAction of the data control.

When you want to update a recordset, you should issue the data1.Recordset.Update command before you movenext, but the fields are updated automatically anyways....