How to save data on a form

DavidCdp1

Registered User.
Local time
Today, 16:26
Joined
Dec 13, 2004
Messages
27
Can any one please tell me how to save data entered on a form to a table. Please help.
Thanks.
DvidCdp1
 
A form can be "bound" to a table, that is, the Form's recordsource property is a table, the controlsource property for each "bound" control is a field the forementioned table. All contols on a form are not necessaarily bound to the underlying table. Merely entering data in a bound control causes it to be saved or to update the underlying table.

Forms which have only unbound controls can have that their data saved on a particular event by cycling through the form's controls with DAO or ADO code and saved in an appropriate recordset.

The first situation may be what you want.
 

Users who are viewing this thread

Back
Top Bottom