Automatically Save New data

  • Thread starter Thread starter Sean
  • Start date Start date
S

Sean

I need a macro or event procedure that will automatically
save or enter new data in a form... ontimer, or
onlostfocus etc, rather than having to manualy move to a
new record.

Is this possible?, if so what type of macro or code would
I use?

Thanks Sean
 
There are several VBA commands that will do this. The one that seems to have
the fewest problems is

If Me.Dirty Then Me.Dirty = False
 
Back
Top