autosave records

C

Cunning

I have a huge form that gets populated over 6-8 hours. If the users press
escape once it deletes the current field and if the press del X 2 by accident
it deletes all details on the table. Can i set an autosave on the database,
table or form?
 
R

Rick Brandt

Cunning said:
I have a huge form that gets populated over 6-8 hours. If the users
press escape once it deletes the current field and if the press del X
2 by accident it deletes all details on the table. Can i set an
autosave on the database, table or form?

You could use the Timer event of the form...

Me.Dirty = False
 
Top