forcing a form to save

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using Access97 I have a form for creating/editing discrete records i.e. no
navigation buttons necessary. My problem is that when I open another form via
a button on main one, the data on the main form has not been saved because I
haven't moved off the record, and I cannot reference it with the second form.

I want a way to force the form to save it's data when it loses the focus.

Does anyone know how to do this?
 
If you have a buttion on the form that launches the other form, then you can
go:


me.Refresh
docmd.OpenForm "your other form"

You should also likey make this other form model......
 
Back
Top