Automatically Save New data

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
 
W

Wayne Morgan

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
 
Top