Update table from combo box

  • Thread starter Thread starter John
  • Start date Start date
J

John

Is there a way to automatically update the information in
a table when selecting it from a combo box on a form
without closing the form. It is a single record (default
values record)? Also once the table is updated, how can
the subforms automatically update their information once
the change is made to the table record?

Thanks,
John
 
you could use the exit event of the control to set the dirty property to
false
Private Sub MycboControl_Exit()
Dirty = False
End Sub
this effectively saves the current record.
HTH
 
Back
Top