If by 'save' you mean update another table, the code is as follows. Creat the appropriate DYNASET,(N.B. it is vital you create a DYNASET rather than any other type of Recordset as this is 'updateable') let's say you've called it MyDynaset then ...
MyDynaset.Edit
MyDynaset!fieldname= txtID.Text (or whatever)
and so on for each field
MyDynaset.Update
Hope this helps.liamfitz.
|