Saving field data on check box

  • Thread starter Thread starter Jim
  • Start date Start date
J

Jim

I have a form, where a person can enter new customer data
into each field. I would like to have this data saved
into the table, after a check box is selected on the same
form. This way, the data is saved without going to a new
record, a new form or closing the current form. Thank you
in advance.
 
If saving the current record is all you want to do, you don't need a check
box or anything fancy.
Simply click on the Record Selector bar (vertical bar on the left side of
the form with a tiny pointer at the top).

If you want something special, then a command button labeled 'Save Record'
might be a better bet.
Code the Click event:
DoCmd.RunCommand acCmdSaveRecord
 
Back
Top